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