Fix vagrant sudoers file permissions

This commit is contained in:
Fabio Rehm 2014-03-09 03:50:33 -03:00
parent 3b1055c843
commit 4a18c7a05a

View file

@ -34,6 +34,6 @@ if [ -f ${ROOTFS}/etc/sudoers.d/vagrant ]; then
else else
debug 'Sudoers file was not found' debug 'Sudoers file was not found'
echo "vagrant ALL=(ALL) NOPASSWD:ALL" > ${ROOTFS}/etc/sudoers.d/vagrant echo "vagrant ALL=(ALL) NOPASSWD:ALL" > ${ROOTFS}/etc/sudoers.d/vagrant
chmod 0441 ${ROOTFS}/etc/sudoers.d/vagrant chmod 0440 ${ROOTFS}/etc/sudoers.d/vagrant
log 'Sudoers file created.' log 'Sudoers file created.'
fi fi