mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-11 11:44:37 +02:00
adduser created the db dir with permissions 0755 but it should be 0750 as in the package.
9 lines
165 B
Bash
9 lines
165 B
Bash
#!/bin/sh
|
|
|
|
user=dhcpcd
|
|
group=dhcpcd
|
|
|
|
addgroup -S $group 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/$user -s /sbin/nologin -G $group -g $user $user 2>/dev/null
|
|
|
|
exit 0
|