summarylogtreecommitdiffstats
path: root/calcengine.install
diff options
context:
space:
mode:
authorMichael Gerber2016-01-01 17:23:03 +0100
committerMichael Gerber2016-01-01 17:23:03 +0100
commit4236e890df92add6a12f3f33161a270419edcd30 (patch)
tree0a5ebc7b41b5bb1768f57229c417888dc9fc67a3 /calcengine.install
downloadaur-4236e890df92add6a12f3f33161a270419edcd30.tar.gz
Initial commit. Package builds and seems to work
Diffstat (limited to 'calcengine.install')
-rw-r--r--calcengine.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/calcengine.install b/calcengine.install
new file mode 100644
index 000000000000..5a0607f15101
--- /dev/null
+++ b/calcengine.install
@@ -0,0 +1,16 @@
+# 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).
+
+pre_install() {
+ if id -u "open-xchange" >/dev/null 2>&1; then
+ echo "user open-xchange exists. All good."
+ else
+ echo "user open-xchange does not exist. Creating it now"
+ useradd -U -s /usr/bin/false -d /opt/open-xchange open-xchange
+ fi
+}
+
+post_install() {
+ chown -R open-xchange:open-xchange /opt/open-xchange
+}