blob: 6caf1598d5c56d63d28fa78eb8e98bc596ac8e96 (
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
|
post_install() {
cat << EOF
Cronicle installed.
Please review the configuration file at /opt/cronicle/conf/config.json.
And please review systemd service file at /usr/lib/systemd/system/cronicle.service.
Next, if this is a master server, type: 'sudo /opt/cronicle/bin/control.sh setup' to init storage.
Then, to start the service, type: 'sudo systemctl start cronicle.service'.
For full docs, please visit: http://github.com/jhuckaby/Cronicle.
Enjoy!
EOF
}
post_upgrade() {
cat << EOF
Cronicle upgraded.
Please review the configuration file at /opt/cronicle/conf/config.json.
For full docs, please visit: http://github.com/jhuckaby/Cronicle.
EOF
}
|