blob: 764290f8a9a0b19d5aa872986ba8f102c20c0f3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo
echo "==> HDAS installed successfully!"
echo
echo "Enable the hdas service for your init system, then start it."
echo "The monitor requires root and SUDO_USER set to your username."
echo
}
post_upgrade() {
echo
echo "==> HDAS upgraded. Restart the hdas service if running."
echo
}
pre_remove() {
echo "==> Stop and disable the hdas service before removal."
}
|