gluon-geolocator: geolocator.sh rm unneeded ;

This commit is contained in:
Jan-Tarek Butt 2017-08-12 21:22:04 +02:00
parent 46cbd16a6e
commit 41d936a539

View File

@ -8,7 +8,7 @@ PID_PART="/var/run/geolocator.pid"
TIME_STAMP="/tmp/geolocator_timestamp"
if [ -f $PID_PART ]; then
echo "The geolocator is still running"; exit 0;
echo "The geolocator is still running"; exit 0
else touch $PID_PART; fi
Clean_pid() { [ -f $PID_PART ] && rm $PID_PART; exit 0; }