summaryrefslogtreecommitdiffhomepage
path: root/packaging/dispatch.install
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-06-04 21:21:20 +0900
committerAdam Malczewski <[email protected]>2026-06-04 21:21:20 +0900
commit394f1ed37ce860da6fdc385769bf29f9737105cd (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /packaging/dispatch.install
parent81a9cdbadf8c9d940d4fe9a2a0de607dee1f5f1a (diff)
downloaddispatch-394f1ed37ce860da6fdc385769bf29f9737105cd.tar.gz
dispatch-394f1ed37ce860da6fdc385769bf29f9737105cd.zip
chore: genesis — remove all files to rebuild from scratch (arch rewrite)
Diffstat (limited to 'packaging/dispatch.install')
-rw-r--r--packaging/dispatch.install31
1 files changed, 0 insertions, 31 deletions
diff --git a/packaging/dispatch.install b/packaging/dispatch.install
deleted file mode 100644
index 75b36cc..0000000
--- a/packaging/dispatch.install
+++ /dev/null
@@ -1,31 +0,0 @@
-post_install() {
- echo ""
- echo "==> Dispatch (base) has been installed."
- echo " Application files: /opt/dispatch"
- echo " Config:"
- echo " /etc/dispatch/dispatch-api.conf"
- echo " /etc/dispatch/dispatch-frontend.conf"
- echo ""
- echo " Run manually:"
- echo " dispatch-api # backend (port 18390 by default)"
- echo " dispatch-frontend # static frontend (port 18391 by default)"
- echo ""
- echo " To run as a service, install one of:"
- echo " pacman -S dispatch-systemd # systemd system services (run as your user)"
- echo " pacman -S dispatch-s6 # s6 services (Artix)"
- echo ""
- echo " For the Electron desktop wrapper:"
- echo " pacman -S dispatch-electron"
- echo ""
-}
-
-post_upgrade() {
- echo ""
- echo "==> Dispatch (base) upgraded."
- echo " If you use dispatch-systemd, restart the units (replace <user>):"
- echo " sudo systemctl restart dispatch-api@<user> dispatch-frontend@<user>"
- echo " If you use dispatch-s6, restart the services:"
- echo " s6-svc -r /run/service/dispatch-api"
- echo " s6-svc -r /run/service/dispatch-frontend"
- echo ""
-}