diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-08-24 16:58:06 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-08-24 16:58:06 +0200 |
commit | e62009185220f6a56dee4e11c5b3576b6addc8e1 (patch) | |
tree | 757172387116052980064edafb51a1e5974e3d70 /etc | |
parent | ef76c2a1b9076cff19691b63fe03b2e9c2e2fccb (diff) | |
download | vyatta-cfg-e62009185220f6a56dee4e11c5b3576b6addc8e1.tar.gz vyatta-cfg-e62009185220f6a56dee4e11c5b3576b6addc8e1.zip |
T441: adjust init scripts and postinst actions to use FRR instead of quagga.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/default/vyatta-cfg | 2 | ||||
-rwxr-xr-x | etc/init.d/vyatta-router | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/default/vyatta-cfg b/etc/default/vyatta-cfg index bc7854a..a30ce0b 100644 --- a/etc/default/vyatta-cfg +++ b/etc/default/vyatta-cfg @@ -17,7 +17,7 @@ fi is_admin=0 is_users=0 VYATTA_LEVEL_GROUP_ADMIN=vyattacfg -VYATTA_LEVEL_GROUP_USERS=quaggavty +VYATTA_LEVEL_GROUP_USERS=frrvty local -a groups=( $(id -Gn) ) for g in "${groups[@]}"; do if [ "$g" == "$VYATTA_LEVEL_GROUP_ADMIN" ]; then diff --git a/etc/init.d/vyatta-router b/etc/init.d/vyatta-router index b26c01f..f5c9ebd 100755 --- a/etc/init.d/vyatta-router +++ b/etc/init.d/vyatta-router @@ -1,7 +1,7 @@ #!/bin/bash ### BEGIN INIT INFO # Provides: vyatta-router -# Required-Start: $syslog $time $local_fs vyatta-unicast +# Required-Start: $syslog $time $local_fs # Required-Stop: $syslog $time $local_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 |