blob: 7d1439fdcc6374b2b34adbb1b386495704b62304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo ""
echo "==> Dispatch has been installed."
echo " Edit /etc/dispatch/dispatch-api.conf to configure the API."
echo " Then enable and start the service:"
echo " systemctl --user enable --now dispatch-api"
echo ""
}
post_upgrade() {
echo ""
echo "==> Dispatch has been upgraded."
echo " You may need to restart the service:"
echo " systemctl --user restart dispatch-api"
echo ""
}
|