ttcn3-gbproxy-test: Fix pcap capture with dumpcap
In commitchanges/47/22047/22279aac6
dumpcap is used to capture pcaps, but dumpcap fails if the directory isn't writable for everyone. Commit62ac27779
only fixed this issue for frame relay, this simply mirrors the change for ttcn3-gbproxy-test Change-Id: I11dcf9efd0b06544a82e31dec03fe76e182fd0d3 Related: OS#4518 SYS#5115
parent
da8c47ecb5
commit
096f6a0030
|
@ -24,7 +24,7 @@ SUBNET=25
|
|||
network_create $SUBNET
|
||||
|
||||
mkdir $VOL_BASE_DIR/gbproxy-tester
|
||||
# if we don't change permissiosn, dumpcap fails to write (despite starting it as root!)
|
||||
# if we don't change permissions, dumpcap fails to write (despite starting it as root!)
|
||||
chmod a+w $VOL_BASE_DIR/gbproxy-tester
|
||||
cp GBProxy_Tests.cfg $VOL_BASE_DIR/gbproxy-tester/
|
||||
|
||||
|
|
|
@ -10,6 +10,9 @@ SUBNET=24
|
|||
network_create $SUBNET
|
||||
|
||||
mkdir $VOL_BASE_DIR/gbproxy-tester
|
||||
# if we don't change permissions, dumpcap fails to write (despite starting it as root!)
|
||||
chmod a+w $VOL_BASE_DIR/gbproxy-tester
|
||||
|
||||
cp GBProxy_Tests.cfg $VOL_BASE_DIR/gbproxy-tester/
|
||||
|
||||
mkdir $VOL_BASE_DIR/sgsn
|
||||
|
|
Loading…
Reference in New Issue