From 66b0002acbedea9ecbb36917e1c4525524ed3840 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 9 Jan 2020 21:56:54 +0100 Subject: [PATCH] Base: Let's make home directories 700 to keep things private :^) --- Kernel/build-root-filesystem.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh index cbc5525466..e799a68a70 100755 --- a/Kernel/build-root-filesystem.sh +++ b/Kernel/build-root-filesystem.sh @@ -87,6 +87,8 @@ printf "installing users... " mkdir -p mnt/home/anon mkdir -p mnt/home/nona cp ../ReadMe.md mnt/home/anon/ +chmod 700 mnt/home/anon +chmod 700 mnt/home/nona chown -R 100:100 mnt/home/anon chown -R 200:200 mnt/home/nona echo "done"