diff options
Diffstat (limited to 'test/lib/gobgp.py')
-rw-r--r-- | test/lib/gobgp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/gobgp.py b/test/lib/gobgp.py index bff284d1..9dbb4b90 100644 --- a/test/lib/gobgp.py +++ b/test/lib/gobgp.py @@ -572,8 +572,8 @@ class GoBGPContainer(BGPContainer): def reload_config(self): for daemon in self._get_enabled_quagga_daemons(): - self.local('pkill {0} -SIGHUP'.format(daemon), capture=True) - self.local('pkill gobgpd -SIGHUP', capture=True) + self.local('pkill -SIGHUP {0}'.format(daemon), capture=True) + self.local('pkill -SIGHUP gobgpd', capture=True) self._wait_for_boot() def add_route(self, route, rf='ipv4', attribute=None, aspath=None, |