Some checks reported errors
farmcontrol/farmcontrol-server/pipeline/head Something is wrong with the build of this commit
15 lines
273 B
Bash
Executable File
15 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stop the service
|
|
systemctl stop farmcontrol-server.service
|
|
|
|
# Disable the service
|
|
systemctl disable farmcontrol-server.service
|
|
|
|
# Remove the systemd service file
|
|
rm -f /etc/systemd/system/farmcontrol-server.service
|
|
|
|
# Reload systemd
|
|
systemctl daemon-reload
|
|
|