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>
This commit is contained in:
David Lamparter 2019-02-19 14:15:19 +01:00
parent 01b5725bf7
commit 82ab1fc506
3 changed files with 9 additions and 9 deletions

View file

@ -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'

View file

@ -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'

View file

@ -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'