-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall-service.sh
executable file
·79 lines (73 loc) · 2.46 KB
/
install-service.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit 1
fi
installservice() {
#TODO Check pre-conditions (configs, python3, etc...)
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
echo This will install a systemd service for this script using $SCRIPT_DIR.
echo You should ensure everything starts by running start.sh manually before installation.
read -p "Do you want to proceed (Y/N)? " -n 1 -r
echo
if [[ $REPLY =~ ^[Nn]$ ]]
then
echo Installation cancelled.
exit 0
fi
UNIT_PATH=/etc/systemd/system/iiot-to-sink
if [ -f "$UNIT_PATH"".service" ]; then
echo Service already installed!
echo Remove with --remove-service
exit 1
fi
if [ $(which systemctl) ]; then
# Create the Service
echo "[Unit]" > "$UNIT_PATH"".service"
echo "Description=IIOT to Sink Service" >> "$UNIT_PATH"".service"
echo "Wants = network-online.target" >> "$UNIT_PATH"".service"
echo "After = network.target network-online.target" >> "$UNIT_PATH"".service"
echo "" >> "$UNIT_PATH"".service"
echo "[Service]" >> "$UNIT_PATH"".service"
echo "ExecStart=$SCRIPT_DIR""/start.sh" >> "$UNIT_PATH"".service"
echo "Restart=always" >> "$UNIT_PATH"".service"
echo "" >> "$UNIT_PATH"".service"
echo "[Install]" >> "$UNIT_PATH"".service"
echo "WantedBy=multi-user.target" >> "$UNIT_PATH"".service"
# Install
systemctl daemon-reload
systemctl enable iiot-to-sink.service
systemctl start iiot-to-sink.service
echo Installation complete!
echo
echo Checking status...
systemctl status iiot-to-sink.service
else
echo Installation not currently supported on environments without systemd
exit 2
fi
}
removeservice() {
UNIT_PATH=/etc/systemd/system/iiot-to-sink
if [ $(which systemctl) ]; then
if [ -f "$UNIT_PATH"".service" ]; then
systemctl stop iiot-to-sink.service
systemctl disable iiot-to-sink.service
rm "$UNIT_PATH"".service"
systemctl daemon-reload
echo Service removed!
else
echo Service not found to remove!
exit 1
fi
else
echo Removal not currently supported on environments without systemd
exit 2
fi
}
if [ "$1" == "--remove-service" ]; then
removeservice
exit 0
fi
installservice
exit 0