mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
6 lines
249 B
Bash
6 lines
249 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S utmp 2>/dev/null
|
|
adduser -S -D -H -s /bin/false -G utmp -g utmp utmp 2>/dev/null
|
|
echo 'Run "rc-update add s6 default; rc-update add utmps default" to automatically start the utmpd and wtmpd services at boot time.' 1>&2
|
|
exit 0
|