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