mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-21 12:26:50 +02:00
7 lines
161 B
Bash
7 lines
161 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S sanlock 2>/dev/null
|
|
adduser -S -D -H -s /sbin/nologin -G sanlock -g sanlock sanlock 2>/dev/null
|
|
addgroup sanlock disk 2>/dev/null
|
|
|
|
exit 0
|