summarylogtreecommitdiffstats
path: root/mscs.install
blob: cbf612708a2ae33ad8e08f7de7a02e4fa14632b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
    if ! id -u "minecraft" >/dev/null 2>&1; then
        useradd --system --user-group --create-home -K UMASK=0022 --home /opt/mscs minecraft
    fi
}

post_remove() {
    if id -u "minecraft" >/dev/null 2>&1; then
        userdel --system --remove-home minecraft
    fi
}