Userland+Kernel: Set shutdown/reboot to only be run by the phys group

This commit is contained in:
thatlittlegit 2020-02-23 12:55:32 -05:00 committed by Andreas Kling
parent 30556a0a93
commit ab9e5755ba
Notes: sideshowbarker 2024-07-19 17:38:49 +09:00

View File

@ -111,8 +111,12 @@ else
find ../Userland/ -type f -executable -exec cp {} mnt/bin/ \;
fi
chown 0:$wheel_gid mnt/bin/su
chown 0:$phys_gid mnt/bin/shutdown
chown 0:$phys_gid mnt/bin/reboot
chmod 4750 mnt/bin/su
chmod 4755 mnt/bin/ping
chmod 4750 mnt/bin/reboot
chmod 4750 mnt/bin/shutdown
echo "done"
printf "installing applications... "