mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-02 07:40:39 +00:00
9 lines
144 B
Bash
Executable File
9 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Stop and disable the service
|
|
systemctl stop changedetection.io.service
|
|
systemctl disable changedetection.io.service
|
|
|
|
exit 0
|