mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
-- add nut home dir /var/lib/nut used for scheduler fix libexec and driver dirs (libexec -> lib) add using dns in init-scripts remove conf.d files from package because it have no sence for now cleanups in APKBUILD and init-scripts
7 lines
156 B
Bash
7 lines
156 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S nut 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/nut -s /sbin/nologin -G nut -g nut nut 2>/dev/null
|
|
adduser nut uucp 2>/dev/null
|
|
|
|
exit 0
|