mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
7 lines
153 B
Bash
7 lines
153 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S restic 2>/dev/null
|
|
adduser -S -D -H -h /dev/null -s /sbin/nologin \
|
|
-G restic -g 'Rest Server Daemon' restic 2>/dev/null
|
|
|
|
exit 0
|