mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
4 lines
223 B
Bash
4 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
|