This repository was archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsystemd-install.sh
executable file
·54 lines (42 loc) · 1.77 KB
/
systemd-install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env bash
cd -- "$(
dirname "${0}"
)" || exit 1
source run.conf
# Abort if systemd not supported
if ! type -p systemctl &> /dev/null; then
printf -- "${COLOUR_NEGATIVE}--->${COLOUR_RESET} %s\n" 'Systemd installation not supported.'
exit 1
fi
# Abort if not run by root user or with sudo
if [[ ${EUID} -ne 0 ]]; then
printf -- "${COLOUR_NEGATIVE}--->${COLOUR_RESET} %s\n" 'Please run as root.'
exit 1
fi
printf -- "---> Installing %s\n" ${SERVICE_UNIT_INSTANCE_NAME}
# Copy systemd unit-files into place.
cp ${SERVICE_UNIT_TEMPLATE_NAME} /etc/systemd/system/
cp ${SERVICE_UNIT_REGISTER_TEMPLATE_NAME} /etc/systemd/system/
systemctl daemon-reload
systemctl enable -f ${SERVICE_UNIT_INSTANCE_NAME}
systemctl enable -f ${SERVICE_UNIT_REGISTER_INSTANCE_NAME}
systemctl restart ${SERVICE_UNIT_INSTANCE_NAME} &
PIDS[0]=${!}
# Tail the systemd unit logs unitl installation completes
journalctl -fn 0 -u ${SERVICE_UNIT_INSTANCE_NAME} &
PIDS[1]=${!}
# Wait for installtion to complete
[[ -n ${PIDS[0]} ]] && wait ${PIDS[0]}
# Allow time for the container bootstrap to complete
sleep 5
kill -15 ${PIDS[1]}
wait ${PIDS[1]} 2> /dev/null
if systemctl -q is-active ${SERVICE_UNIT_INSTANCE_NAME} && systemctl -q is-active ${SERVICE_UNIT_REGISTER_INSTANCE_NAME}; then
printf -- "---> Service unit is active: %s\n" "$(systemctl list-units --type=service | grep "^[ ]*${SERVICE_UNIT_INSTANCE_NAME}")"
printf -- "---> Service register unit is active: %s\n" "$(systemctl list-units --type=service | grep "^[ ]*${SERVICE_UNIT_REGISTER_INSTANCE_NAME}")"
printf -- "${COLOUR_POSITIVE} --->${COLOUR_RESET} %s\n" 'Install complete'
else
printf -- "\nService status:\n"
systemctl status -ln 50 ${SERVICE_UNIT_REGISTER_INSTANCE_NAME}
printf -- "\n${COLOUR_NEGATIVE} --->${COLOUR_RESET} %s\n" 'Install error'
fi