summarylogtreecommitdiffstats
path: root/open-xchange-authorization-standard.install
blob: 5a0607f15101b47d6984c3cfe1756c5fddbd77ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}