diff options
author | Valery Kartel <valery.kartel@gmail.com> | 2017-04-21 16:37:33 +0300 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-06-02 08:02:44 +0000 |
commit | 2275192021130da8e3bed22be2cd653ce9793a47 (patch) | |
tree | d334efe6a5bb25a24c2462d72e973071c06b3a0d /testing/nut/upsd.initd | |
parent | 1d0d9aded485e650569d95c479574a1ffc6fdb9a (diff) | |
download | aports-2275192021130da8e3bed22be2cd653ce9793a47.tar.bz2 aports-2275192021130da8e3bed22be2cd653ce9793a47.tar.xz |
testing/nut: fix user creation in post-install
--
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
Diffstat (limited to 'testing/nut/upsd.initd')
-rw-r--r-- | testing/nut/upsd.initd | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testing/nut/upsd.initd b/testing/nut/upsd.initd index c765c59b87..0f891bce5d 100644 --- a/testing/nut/upsd.initd +++ b/testing/nut/upsd.initd @@ -1,13 +1,14 @@ #!/sbin/openrc-run -name=nut-server +name="UPS Server" pidfile=/run/nut/upsd.pid command=/usr/sbin/upsd required_files="/etc/nut/nut.conf /etc/nut/upsd.conf" extra_started_commands="reload" +start_stop_daemon_args="--quiet" depend() { - use net + use net dns } start_pre() { @@ -34,6 +35,6 @@ stop_post() { reload() { ebegin "Reloading $name" - start-stop-daemon --signal HUP --pidfile "$pidfile" + start-stop-daemon --signal HUP --pidfile $pidfile eend $? } |