summarylogtreecommitdiffstats
path: root/portal.install
diff options
context:
space:
mode:
Diffstat (limited to 'portal.install')
-rw-r--r--portal.install16
1 files changed, 0 insertions, 16 deletions
diff --git a/portal.install b/portal.install
deleted file mode 100644
index a945e69b1fed..000000000000
--- a/portal.install
+++ /dev/null
@@ -1,16 +0,0 @@
-post_install() {
- getent passwd portal &>/dev/null || useradd -r portal -d / -s /bin/false >/dev/null
- portal-postconf -d $(hostname)
- portal-doveconf
- true
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- getent passwd portal &>/dev/null && userdel portal >/dev/null
- getent group portal &>/dev/null && groupdel portal >/dev/null
- post_install
-}