mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 11:21:50 +01:00
10 lines
145 B
Bash
10 lines
145 B
Bash
#!/bin/sh
|
|
|
|
user=prosody
|
|
home=/var/lib/prosody
|
|
adduser -h $home -s /bin/false -D $user 2>/dev/null
|
|
mkdir -p $home
|
|
chown $user:$user $home
|
|
exit 0
|
|
|