aboutsummaryrefslogtreecommitdiffstats
path: root/testing/radicale/radicale.pre-install
blob: 147f8851755a052cdc2c6c705af542884d960323 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

name=radicale

addgroup -S $name 2>/dev/null
adduser -S -D -H -h /var/lib/$name -s /sbin/nologin -G $name -g $name $name 2>/dev/null
addgroup $name $name 2>/dev/null

exit 0