summarylogtreecommitdiffstats
path: root/citadel.install
diff options
context:
space:
mode:
Diffstat (limited to 'citadel.install')
-rw-r--r--citadel.install32
1 files changed, 32 insertions, 0 deletions
diff --git a/citadel.install b/citadel.install
new file mode 100644
index 000000000000..d17c394572a4
--- /dev/null
+++ b/citadel.install
@@ -0,0 +1,32 @@
+## arg 1: the new package version
+pre_install() {
+ :;
+}
+
+## arg 1: the new package version
+post_install() {
+ echo "run 'systemctl start citadel'"
+ echo "then run '/usr/local/citadel/setup' to configure citadel"
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+pre_upgrade() {
+ :;
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ :;
+}
+
+## arg 1: the old package version
+pre_remove() {
+ :;
+}
+
+## arg 1: the old package version
+post_remove() {
+ :;
+}