mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
5 lines
223 B
Bash
5 lines
223 B
Bash
#!/bin/sh
|
|
grep '^bitlbee:' /etc/group >/dev/null || addgroup -S bitlbee 2>/dev/null
|
|
grep '^bitlbee:' /etc/passwd >/dev/null || adduser -SDh/var/lib/bitlbee \
|
|
-s/sbin/nologin -Gbitlbee -gbitlbee bitlbee bitlbee 2>/dev/null
|