07833e3e63
--HG-- extra : convert_revision : 2e030bb7b1c308f32f5cb173c6827a3eb2371666
12 lines
202 B
Plaintext
12 lines
202 B
Plaintext
#
|
|
# 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
|
|
;;
|
|
esac
|