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