diff options
-rw-r--r-- | Base/etc/group | 2 | ||||
-rwxr-xr-x | Meta/build-root-filesystem.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Base/etc/group b/Base/etc/group index 2fb7986f9c..4f712ac979 100644 --- a/Base/etc/group +++ b/Base/etc/group @@ -1,5 +1,5 @@ root:x:0: -wheel:x:1:anon +goodboys:x:1:anon tty:x:2: phys:x:3:window,anon audio:x:4:anon diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index 597f4babcd..c52fb9f963 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -2,7 +2,7 @@ set -e -wheel_gid=1 +goodboys_gid=1 tty_gid=2 phys_gid=3 audio_gid=4 @@ -36,8 +36,8 @@ chmod 660 mnt/etc/WindowServer/WindowServer.ini chown $window_uid:$window_gid mnt/etc/WindowServer/WindowServer.ini echo "/bin/sh" > mnt/etc/shells -chown 0:$wheel_gid mnt/bin/su -chown 0:$wheel_gid mnt/bin/KeyboardSettings +chown 0:$goodboys_gid mnt/bin/su +chown 0:$goodboys_gid mnt/bin/KeyboardSettings chown 0:$phys_gid mnt/bin/shutdown chown 0:$phys_gid mnt/bin/reboot chown 0:0 mnt/boot/Kernel |