blob: f8ad6db4e0f7d0c3ce5e5613a31a3e7d0c3ad6b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
post_install() {
cat << EOF
iptv-checker-rs installed.
Please review the systemd configuration file at /usr/lib/systemd/system/iptv-checker-rs.service.
Then, to start the web service, type: 'sudo systemctl start iptv-checker-rs.service'.
You can also use it with "iptv-checker-rs <COMMAND>".
For full docs, please visit: https://github.com/zhimin-dev/iptv-checker-rs.
Enjoy!
EOF
}
post_upgrade() {
cat << EOF
Cronicle upgraded.
For full docs, please visit: https://github.com/zhimin-dev/iptv-checker-rs.
EOF
}
|