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