forked from buzzhub/lsyupdate
11 lines
203 B
Bash
Executable File
11 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
#set -e
|
|
|
|
# Stop the service if running
|
|
if systemctl is-active --quiet lsyloader.service; then
|
|
systemctl stop lsyloader.service
|
|
fi
|
|
|
|
# Disable the service
|
|
systemctl disable lsyloader.service
|