diff options
author | Timo Teräs <timo.teras@iki.fi> | 2011-07-06 10:21:15 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2011-07-06 10:24:35 +0300 |
commit | 0e902e56b891ec024aba7b56e4edf0010d359cd0 (patch) | |
tree | 0d1e9f7a9420b36a13d5f662c9aa41a8ca22c0c5 /main/rt4/rt4.pre-install | |
parent | 2a12c1f8d7a9d2a292f74b915bd3ab55ecc4b3bc (diff) | |
download | aports-0e902e56b891ec024aba7b56e4edf0010d359cd0.tar.bz2 aports-0e902e56b891ec024aba7b56e4edf0010d359cd0.tar.xz |
main/rt4: create rt4 user, fix package permissions
* also add a patch to allow overriding of envelope-from from a
template
Diffstat (limited to 'main/rt4/rt4.pre-install')
-rw-r--r-- | main/rt4/rt4.pre-install | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/main/rt4/rt4.pre-install b/main/rt4/rt4.pre-install new file mode 100644 index 0000000000..245b32e280 --- /dev/null +++ b/main/rt4/rt4.pre-install @@ -0,0 +1,5 @@ +#!/bin/sh + +addgroup -S rt4 2>/dev/null +adduser -S -s /bin/false -G rt4 -D -H -g "Request Tracker 4 user" rt4 2>/dev/null +exit 0 |