14 lines
348 B
Text
14 lines
348 B
Text
#
|
|
# 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
|
|
[ ! -d etc/sudoers.d ] && install -d etc/sudoers.d
|
|
[ ! -d var/db/sudo ] && install -dm750 var/db/sudo
|
|
;;
|
|
esac
|