blob: cc55166de664fd1dfc611e47827ec6297d57ceda (
plain)
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
|
post_install() {
pkgname=gincamalarm
# Fixing membership
chown root: /var/log/$pkgname
chown -R root: /etc/$pkgname
# Reload systemctl
systemctl daemon-reload
echo "Adding gincamalarm in systemctl:"
echo " systemctl enable gincamalarm"
echo " systemctl start gincamalarm"
echo "Adding this rule in iptables:"
echo " iptables -t filter -A INPUT -p tcp --dport 8090 -j ACCEPT"
true
}
post_upgrade() {
# Reload systemctl
systemctl daemon-reload
echo "You should restart gincamalarm"
echo " systemctl restart gincamalarm"
true
}
pre_remove() {
pkgname=gincamalarm
# Remove symlink in systemd
systemctl disable $pkgname
# Stop server
systemctl stop $pkgname
# Reload systemctl
systemctl daemon-reload
true
}
|