blob: 0b093cb204aeaffee3eb2c399cb8f4835da358ac (
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
|
# Thanks aur#cow-proxy
post_install() {
post_upgrade
}
post_upgrade() {
cat << EOF
Configuration document can be found at : https://ehforwarderbot.readthedocs.io/
Running ehforwarderbot system instance for user account:
To reload system systemd modules, execute
systemctl daemon-reload
To start ehforwarderbot, execute:
systemctl start ehforwarderbot@user
To autostart ehforwarderbot on system start, execute
systemctl enable ehforwarderbot@user
To view the full log of ehforwarderbot, execute;
journalctl -u ehforwarderbot@user
EOF
}
|