diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2008-09-29 09:48:39 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2008-09-29 09:48:39 -0700 |
commit | e353784221348c589a0351903094e1b62cbdd40f (patch) | |
tree | 94bb17f50f619a182fd443568c8330a372ceb33f /scripts/system | |
parent | 8397f27caa34ab83a9e4546a10800cffea4397f2 (diff) | |
download | vyatta-cfg-quagga-e353784221348c589a0351903094e1b62cbdd40f.tar.gz vyatta-cfg-quagga-e353784221348c589a0351903094e1b62cbdd40f.zip |
Bugfix: 3492
Add "admin" and "operator" level users to the "dip" group so that they
can execute CLI commands that bring up and take down PPP connections.
Diffstat (limited to 'scripts/system')
-rwxr-xr-x | scripts/system/vyatta_update_login.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/system/vyatta_update_login.pl b/scripts/system/vyatta_update_login.pl index bd103c57..dbe4e338 100755 --- a/scripts/system/vyatta_update_login.pl +++ b/scripts/system/vyatta_update_login.pl @@ -53,8 +53,8 @@ my %reasons = ( # Map of level to additional groups my %level_map = ( - 'admin' => [ 'quaggavty', 'vyattacfg', 'sudo', 'adm', ], - 'operator' => [ 'quaggavty', 'operator', 'adm', ], + 'admin' => [ 'quaggavty', 'vyattacfg', 'sudo', 'adm', 'dip', ], + 'operator' => [ 'quaggavty', 'operator', 'adm', 'dip', ], ); # we have some users |