aboutsummaryrefslogtreecommitdiffstats
path: root/community/seafile/seafile-server.pre-install
blob: b5c1b4f64e17d19fa8d89f8f61201e9d4951c3d0 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

SEAFILE_HOME=/var/lib/seafile

addgroup -S -g 800 seafile 2>/dev/null
adduser -S -h $SEAFILE_HOME -s /bin/sh -G seafile -g seafile -u 800 -D seafile 2>/dev/null

exit 0