diff options
author | rbalocca <rbalocca@vyatta.com> | 2008-05-07 12:19:06 -0700 |
---|---|---|
committer | rbalocca <rbalocca@vyatta.com> | 2008-05-07 12:19:06 -0700 |
commit | 2f3d02eede9cd991179ffa5a3075a46f73e6bacf (patch) | |
tree | 1fcc7c2607c966140006f033e578be055735d3e8 /debian/vyatta-cfg-system.postinst.in | |
parent | 87b0bf788ed149b9ba3dcf04c1e666c4e81abf93 (diff) | |
parent | a3aa2f7e17e1cccfc9334a61547e48e156d5453b (diff) | |
download | vyatta-cfg-quagga-2f3d02eede9cd991179ffa5a3075a46f73e6bacf.tar.gz vyatta-cfg-quagga-2f3d02eede9cd991179ffa5a3075a46f73e6bacf.zip |
Merge branch 'glendale' into hollywood
Conflicts:
debian/vyatta-cfg-system.postinst.in
Diffstat (limited to 'debian/vyatta-cfg-system.postinst.in')
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 54931692..a627c4af 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -30,7 +30,9 @@ if [ "$sysconfdir" != "/etc" ]; then fi # Allow operator to do a limited number of commands without password - cat <<"EOF" >>/etc/sudoers + if ! grep -q '^%operator ALL=NOPASSWD:' /etc/sudoers; then + cat <<"EOF" >>/etc/sudoers +### BEGIN VYATTA OPERATOR COMMANDS Cmnd_Alias IPTABLES = /sbin/iptables --list -n,\ /sbin/iptables -L -vn,\ /sbin/iptables -L * -vn,\ @@ -46,7 +48,9 @@ Cmnd_Alias DATE = /bin/date, /usr/sbin/ntpdate Cmnd_Alias PPPOE_CMDS = /sbin/pppd, /sbin/poff %operator ALL=NOPASSWD: /sbin/reboot, DATE, IPTABLES, ETHTOOLP, IPFLUSH, \ PPPOE_CMDS, /usr/bin/tshark +### END VYATTA OPERATOR COMMANDS EOF + fi # for "users" level (FIXME) if ! grep -q "^%users ALL=NOPASSWD: ${bindir}/sudo-users/" /etc/sudoers; then |