Final edits

- Make all cgi-bin and init files executable

- Move NTP contribution fix from package --> to be appart of sdxpinn-patch

- Edited ntp fi location

- Added additional service triggers to primary service quecmanager-services
This commit is contained in:
Cameron Thompson
2025-03-11 23:39:06 -04:00
parent 36874b12f0
commit 8e80ba5c91
55 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
#/bin/bash
# Check if the script is run as root. If not, rerun with sudo.
if [ "$(id -u)" -ne 0 ]; then
echo "Script is not running as root. Re-executing with sudo..."
exec sudo "$0" "$@"
fi
find ./ -type f -name "*.sh" -exec dos2unix {} +
exit 0