aboutsummaryrefslogtreecommitdiffstats
path: root/devel/sfslite/pkg-install
blob: 1de77adb48a5c178ab44653e739b68cc4abdc4a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh

if [ -n "${PACKAGE_BUILDING}" ]; then
    exit 0
fi

USER=sfs
GROUP=sfs
UID=171
GID=171
PW=/usr/sbin/pw
COMMENT='Self-Certifying File System'

if [ "$2" = "PRE-INSTALL" ]; then
    echo -n "Checking for group '$GROUP'... "

    if ! ${PW} groupshow $GROUP >/dev/null 2>&1; then
        echo -n "doesn't exist, adding... "
        if ${PW} groupadd $GROUP -g ${GID}; then
            echo "success."
        else
            echo "FAILED!"
            exit 1
        fi
    else
        echo "exists."
    fi

    echo -n "Checking for user '$USER'... "

    if ! ${PW} usershow $USER >/dev/null 2>&1; then
        echo -n "doesn't exist, adding... "
        if ${PW} useradd $USER -u ${UID} -c ${COMMENT} \
                   -d /nonexistent -g $GROUP -s /sbin/nologin -h -; then
            echo "success."
        else
            echo "FAILED!"
            exit 1
        fi
    else
        echo "exists."
    fi
fi

exit 0