summarylogtreecommitdiffstats
path: root/open-xchange-authorization-standard.install
diff options
context:
space:
mode:
Diffstat (limited to 'open-xchange-authorization-standard.install')
-rw-r--r--open-xchange-authorization-standard.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/open-xchange-authorization-standard.install b/open-xchange-authorization-standard.install
new file mode 100644
index 000000000000..5a0607f15101
--- /dev/null
+++ b/open-xchange-authorization-standard.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
+}