summaryrefslogtreecommitdiffstats
path: root/debian/tests
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-01-04 15:25:20 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-01-04 15:25:20 +0100
commitd8e4c43827fab188dcfd98fe18bc75d8479d723e (patch)
tree05559567e099837efbcb6ff537353715db5d700b /debian/tests
parentlib: Update ZAPI to version 4 and HEADER_MARKER to 254 (diff)
downloadfrr-d8e4c43827fab188dcfd98fe18bc75d8479d723e.tar.xz
frr-d8e4c43827fab188dcfd98fe18bc75d8479d723e.zip
debian: Convert Quagga -> Frr
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'debian/tests')
-rw-r--r--debian/tests/control2
-rw-r--r--debian/tests/daemons10
2 files changed, 6 insertions, 6 deletions
diff --git a/debian/tests/control b/debian/tests/control
index 1993e371f..53fd537e2 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -1,3 +1,3 @@
Tests: daemons
-Depends: quagga
+Depends: frr
Restrictions: needs-root
diff --git a/debian/tests/daemons b/debian/tests/daemons
index 52c156a1d..ac35ecd95 100644
--- a/debian/tests/daemons
+++ b/debian/tests/daemons
@@ -1,21 +1,21 @@
#!/bin/bash
#---------------
-# Testing quagga
+# Testing frr
#---------------
set -e
# modify config file to enable all daemons and copy config files
-CONFIG_FILE=/etc/quagga/daemons
+CONFIG_FILE=/etc/frr/daemons
DAEMONS=("zebra" "bgpd" "ospfd" "ospf6d" "ripd" "ripngd" "isisd" "pimd")
for daemon in "${DAEMONS[@]}"
do
sed -i -e "s/${daemon}=no/${daemon}=yes/g" $CONFIG_FILE
- cp /usr/share/doc/quagga/examples/${daemon}.conf.sample /etc/quagga/${daemon}.conf
+ cp /usr/share/doc/frr/examples/${daemon}.conf.sample /etc/frr/${daemon}.conf
done
-# reload quagga
-/etc/init.d/quagga restart > /dev/null 2>&1
+# reload frr
+/etc/init.d/frr restart > /dev/null 2>&1
# check daemons
for daemon in "${DAEMONS[@]}"