diff options
| author | David Lamparter <equinox@diac24.net> | 2019-02-19 14:15:19 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2019-02-19 21:34:10 +0100 | 
| commit | 82ab1fc506135e5835d4bb95b23da7f4faf1dde3 (patch) | |
| tree | 9a1a2aa17d3c87934fc1d6cd0132039f196a1ca9 /debian | |
| parent | 01b5725bf736f5c453376a84ee5d8749caa4f41b (diff) | |
debian: fix autopkgtest
pgrep is in procps, which is an essential package.  killall is in
psmisc, which isn't.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'debian')
| -rwxr-xr-x | debian/tests/bgpd-snmp-rpki | 6 | ||||
| -rwxr-xr-x | debian/tests/py-frr-reload | 6 | ||||
| -rwxr-xr-x | 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'  | 
