summarylogtreecommitdiffstats
path: root/jabberd14.install
diff options
context:
space:
mode:
authorkreon2015-07-07 02:17:55 +0300
committerkreon2015-07-07 02:22:29 +0300
commitd1c5f901d544ef97229fd74076059bee7fa2fc57 (patch)
tree325d9450560f31032bc557708b6b668c5f326638 /jabberd14.install
downloadaur-jabberd14-git.tar.gz
initial commit
Diffstat (limited to 'jabberd14.install')
-rw-r--r--jabberd14.install39
1 files changed, 39 insertions, 0 deletions
diff --git a/jabberd14.install b/jabberd14.install
new file mode 100644
index 000000000000..3dd797b8b313
--- /dev/null
+++ b/jabberd14.install
@@ -0,0 +1,39 @@
+# This is a default template for a post-install scriptlet.
+# Uncomment only required functions and remove any functions
+# you don't need (and this header).
+
+## arg 1: the new package version
+pre_install() {
+ # do something here
+}
+
+## arg 1: the new package version
+post_install() {
+ cat /etc/passwd | grep -q jabberd || sudo useradd -M -d / -s /sbin/nologin -U -r jabberd
+ mkdir -p /var/run/jabberd/
+ echo "Look into /usr/share/doc/jabberd/ for *.sql files and database instructions"
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+pre_upgrade() {
+ # do something here
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ # do something here
+}
+
+## arg 1: the old package version
+pre_remove() {
+ userdel jabberd
+ groupdel jabberd
+ # do something here
+}
+
+## arg 1: the old package version
+post_remove() {
+ # do something here
+}