mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 20:46:41 +02:00
11 lines
335 B
Text
11 lines
335 B
Text
#!/bin/busybox sh
|
|
|
|
# We need the symlinks early
|
|
/bin/busybox mkdir -p "/bin" "/sbin" "/usr/bin" "/usr/sbin"
|
|
/bin/busybox --install -s || exit 1
|
|
|
|
# can't be in pre-install since adduser/group may not available then
|
|
addgroup -S klogd 2>/dev/null
|
|
adduser -S -D -H -h /dev/null -s /sbin/nologin -G klogd -g klogd klogd 2>/dev/null
|
|
|
|
exit 0
|