mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
7 lines
140 B
Bash
7 lines
140 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S bareos 2>/dev/null
|
|
adduser -S -D -h /var/lib/bareos/ -s /sbin/nologin -G bareos -g bareos bareos 2>/dev/null
|
|
|
|
exit 0
|