blob: 6d39a82cc646545c743bc5f35a3af9f5694132a2 (
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
|
post_install() {
pkgname=sshd_autoban
# Fixing membership
chown root: /var/log/$pkgname
chown -R root: /etc/$pkgname
# Reload systemctl
systemctl daemon-reload
echo "Adding sshd_autoban in systemctl:"
echo " systemctl enable sshd_autoban"
echo " systemctl start sshd_autoban"
true
}
post_upgrade() {
# Reload systemctl
systemctl daemon-reload
echo "You should restart sshd_autoban:"
echo " systemctl restart sshd_autoban"
true
}
pre_remove() {
pkgname=sshd_autoban
# Remove symlink in systemd
systemctl disable $pkgname
# Stop server
systemctl stop $pkgname
# Reload systemctl
systemctl daemon-reload
true
}
|