- 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
11 lines
257 B
Bash
Executable File
11 lines
257 B
Bash
Executable File
#/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
|