Created
April 1, 2014 12:50
-
-
Save hsachdevah/9913320 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# file /etc/sudoers.d/go | |
# preferably edit using visudo -f <file> | |
# allow the go user to run some commands using sudo. Need to specify full path to command. | |
Cmnd_Alias GO_SUDO_CMDS = /usr/sbin/vzctl, /bin/umount /mnt/vzdata/*/projectdata | |
# don't require a tty for running sudo | |
Defaults!GO_SUDO_CMDS !requiretty | |
# don't require password | |
go ALL=(ALL) NOPASSWD: GO_SUDO_CMDS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment