Some checks failed
farmcontrol/farmcontrol-server/pipeline/head There was a failure building this commit
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stop the service
|
|
systemctl stop farmcontrol-server.service
|
|
|
|
# Disable the service
|
|
systemctl disable farmcontrol-server.service
|
|
|
|
# Reload systemd
|
|
systemctl daemon-reload
|
|
|