void-packages/srcpkgs/sudo/INSTALL

14 lines
296 B
Text
Raw Normal View History

#
# This script sets up correct perms for /etc/sudoers.
#
case "${ACTION}" in
post)
if [ -f etc/sudoers ]; then
echo "Setting up permissions to /etc/sudoers..."
chmod 0440 etc/sudoers
fi
chmod 4111 usr/bin/sudo usr/bin/sudoedit
2010-10-22 19:00:07 +00:00
[ ! -d etc/sudoers.d ] && install -d etc/sudoers.d
;;
esac