diff options
Diffstat (limited to 'extras/hs-test')
-rw-r--r-- | extras/hs-test/vppinstance.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extras/hs-test/vppinstance.go b/extras/hs-test/vppinstance.go index c6771f697f8..89e67d0fac7 100644 --- a/extras/hs-test/vppinstance.go +++ b/extras/hs-test/vppinstance.go @@ -117,6 +117,12 @@ func (vpp *VppInstance) start() error { startupFileName := vpp.getEtcDir() + "/startup.conf" vpp.container.createFile(startupFileName, configContent) + // create wrapper script for vppctl with proper CLI socket path + cliContent := "#!/usr/bin/bash\nvppctl -s " + vpp.getRunDir() + "/cli.sock" + vppcliFileName := "/usr/bin/vppcli" + vpp.container.createFile(vppcliFileName, cliContent) + vpp.container.exec("chmod 0755 " + vppcliFileName) + if *IsVppDebug { sig := make(chan os.Signal, 1) signal.Notify(sig, syscall.SIGINT) |