summaryrefslogtreecommitdiff
path: root/community/ushare/ushare.install
blob: c51ea621d12f4b510aed075c33bc4ae69ca8f341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
    if [ -z "`grep '^ushare:' /etc/group`" ]; then
        groupadd ushare
    fi
    if [ -z "`grep '^ushare:' /etc/passwd`" ]; then
        useradd -d /var/empty -g ushare -s /bin/false ushare
    fi
}

post_upgrade() {
    post_install $1
}

post_remove() {
    userdel ushare
}