diff options
Diffstat (limited to 'test/lib/gobgp.py')
-rw-r--r-- | test/lib/gobgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/gobgp.py b/test/lib/gobgp.py index 72a9bc2d..bff284d1 100644 --- a/test/lib/gobgp.py +++ b/test/lib/gobgp.py @@ -108,7 +108,7 @@ class GoBGPContainer(BGPContainer): def _start_gobgp(self, graceful_restart=False): c = CmdBuffer() - c << '#!/bin/bash' + c << '#!/bin/sh' c << '/go/bin/gobgpd -f {0}/gobgpd.conf -l {1} -p {2} -t {3} > ' \ '{0}/gobgpd.log 2>&1'.format(self.SHARED_VOLUME, self.log_level, '-r' if graceful_restart else '', self.config_format) |