ttcn3-tcpdump-start.sh: don't hardcode binary paths

After replacing debian-stretch-titan with debian-bullseye-titan, tcpdump
does not run anymore, the binary is in /usr/bin and not in /usr/sbin.

Related: OS#4969
Change-Id: I18c88c45c7522c1120ca42cd48d67fe8f155cd39
This commit is contained in:
Oliver Smith 2021-12-16 12:44:42 +01:00 committed by osmith
parent 7138913d66
commit fbf3345065
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
#!/bin/sh
PIDFILE_PCAP=/tmp/pcap.pid
TCPDUMP=/usr/sbin/tcpdump
DUMPCAP=/usr/bin/dumpcap
TCPDUMP=$(command -v tcpdump)
DUMPCAP=$(command -v dumpcap)
PIDFILE_NETCAT=/tmp/netcat.pid
NETCAT=/bin/nc
NETCAT=$(command -v nc)
GSMTAP_PORT=4729
TESTCASE=$1