From 1d3b80515bb63f1d99aff1784fb7875ff38eb264 Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Sat, 8 Mar 2025 18:31:05 -0500 Subject: [PATCH] var and etc --- src/rt/rfwfs/fs/root.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/rt/rfwfs/fs/root.ts b/src/rt/rfwfs/fs/root.ts index 0204131..524147b 100644 --- a/src/rt/rfwfs/fs/root.ts +++ b/src/rt/rfwfs/fs/root.ts @@ -28,10 +28,14 @@ const home = rfwfs.directory("home", Permissions.r, time_now, [user]) // ------------ // ------------ root ------------ -const bin = rfwfs.directory("bin", Permissions.r, time_now) +const bin = rfwfs.directory("bin", Permissions.r, time_now) +const vard = rfwfs.directory("var", Permissions.r, time_now) +const etc = rfwfs.directory("etc", Permissions.r, time_now) // ------------ export default rfwfs.directory("/", Permissions.r, time_now, [ bin, home, + vard, + etc, ]) \ No newline at end of file