-redo of some roles, particularly GUI -modifications to support working from a "Raspbian Lite" install
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/bash
|
|
if pgrep sipp >/dev/null
|
|
then
|
|
echo "sipp is running"
|
|
else
|
|
cd /home/pi/sipp
|
|
./sipp -sn uac_pcap 192.168.198.2 -bg -l 40
|
|
fi
|