From 82ab1fc506135e5835d4bb95b23da7f4faf1dde3 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Tue, 19 Feb 2019 14:15:19 +0100 Subject: [PATCH] debian: fix autopkgtest pgrep is in procps, which is an essential package. killall is in psmisc, which isn't. Signed-off-by: David Lamparter --- debian/tests/bgpd-snmp-rpki | 6 +++--- debian/tests/py-frr-reload | 6 +++--- debian/tests/zebra-lo | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/debian/tests/bgpd-snmp-rpki b/debian/tests/bgpd-snmp-rpki index 91e4bdda55..930b8c26dc 100755 --- a/debian/tests/bgpd-snmp-rpki +++ b/debian/tests/bgpd-snmp-rpki @@ -10,9 +10,9 @@ EOF service frr restart # check that it actually started -killall -0 watchfrr -killall -0 zebra -killall -0 bgpd +pgrep watchfrr +pgrep zebra +pgrep bgpd # just for debugging vtysh -c 'show modules' diff --git a/debian/tests/py-frr-reload b/debian/tests/py-frr-reload index a50647a89d..e2c97e8744 100755 --- a/debian/tests/py-frr-reload +++ b/debian/tests/py-frr-reload @@ -5,9 +5,9 @@ set -e service frr restart # these should be running by default -killall -0 watchfrr -killall -0 zebra -killall -0 staticd +pgrep watchfrr +pgrep zebra +pgrep staticd # configure interactively, save to file vtysh -c 'configure terminal' -c 'ip route 198.51.100.0/28 127.0.0.1' diff --git a/debian/tests/zebra-lo b/debian/tests/zebra-lo index ffd9c72adc..2a388d5da7 100755 --- a/debian/tests/zebra-lo +++ b/debian/tests/zebra-lo @@ -5,9 +5,9 @@ set -e service frr status >/dev/null || service frr restart # these should be running by default -killall -0 watchfrr -killall -0 zebra -killall -0 staticd +pgrep watchfrr +pgrep zebra +pgrep staticd # check vtysh works at all vtysh -c 'show version' -- 2.39.5