2010-01-16 04:43:05 +00:00
|
|
|
#
|
|
|
|
# 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
|
2010-04-22 14:51:50 +00:00
|
|
|
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
|
2011-08-18 14:04:00 +00:00
|
|
|
[ ! -d var/db/sudo ] && install -dm750 var/db/sudo
|
2010-01-16 04:43:05 +00:00
|
|
|
;;
|
|
|
|
esac
|