All checks were successful
farmcontrol/farmcontrol-server/pipeline/head This commit looks good
Introduce a new before-remove.sh script to stop and disable the farmcontrol-server service before package removal. Update after-remove.sh to only reload systemd, simplifying the uninstallation process. Modify build-linux-packages.sh to include the new before-remove script in the packaging process.
5 lines
98 B
Bash
Executable File
5 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Reload systemd after unit file removal
|
|
systemctl daemon-reload 2>/dev/null || true
|