Update and streamline update script

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-06-06 18:51:03 +05:30
parent 88c78f686d
commit 8185fd7023
No known key found for this signature in database
GPG key ID: C2E74282C2133D62

View file

@ -3,32 +3,27 @@
CL_RST="\033[0m"
CL_YLW="\033[01;33m"
function reportWarning {
echo -e ""
function prettyPrint {
echo -e "${CL_YLW}${1}${CL_RST}"
if [[ -z "${2}" ]]; then
echo -e ""
fi
}
# Grab all service names
declare -a services
while IFS= read -r -d $'\0'; do
services+=("$REPLY")
done < <(find . -name '*.service' -print0 | sed 's/\.\///g')
declare -a services=('caddy' 'horbiswalls-bot' 'mirror-bot' 'uno-bot')
# Place the systemd unit files where they belong
reportWarning "Copying systemd files to /etc/systemd/system"
for service in "${services[@]}"; do sudo cp "${service}" /etc/systemd/system/; done
prettyPrint "Copying systemd files to /etc/systemd/system"
for service in "${services[@]}"; do sudo cp -v "${service}.service" /etc/systemd/system/; done
# Reload systemctl so that it processes our changes
reportWarning "Reloading systemctl daemon"
prettyPrint "Reloading systemctl daemon"
sudo systemctl daemon-reload
# Now loop through each service and restart it
for service in "${services[@]}"; do
service="${service/.service/}"
reportWarning "Restarting ${service}"
prettyPrint "Restarting ${service}"
sudo service "${service}" restart
[ -f "/etc/systemd/system/multi-user.target.wants/${service}.service" ] && sudo systemctl enable "${service}"
if [ ! -f "/etc/systemd/system/multi-user.target.wants/${service}.service" ]; then
prettyPrint "Enabling ${service}"
sudo systemctl enable "${service}"
fi
done