9 lines
130 B
Bash
9 lines
130 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if command -v systemctl >/dev/null 2>&1; then
|
|
systemctl stop bitoj.service >/dev/null 2>&1 || true
|
|
fi
|
|
|
|
exit 0
|