7 lines
143 B
Plaintext
7 lines
143 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [[ $(systemctl is-active loramap || true) == "active" ]]
|
||
|
then
|
||
|
touch /tmp/loramap_service_runner
|
||
|
service loramap stop
|
||
|
fi
|