diff options
author | Dennis Przytarski <dennis@przytarski.com> | 2015-08-17 09:26:25 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-08-17 11:37:02 +0000 |
commit | dc81d983c997d23209da136877b18b13f724ef26 (patch) | |
tree | a9cb1a8b4dc0dbc171439099dc179abd9513e035 /testing/knot/knot.pre-install | |
parent | fde59d53df8108f15fb9109ab5bbdf81eeace183 (diff) | |
download | aports-dc81d983c997d23209da136877b18b13f724ef26.tar.bz2 aports-dc81d983c997d23209da136877b18b13f724ef26.tar.xz |
testing/knot: added dnssec timestamps patch + cleanup
added dnssec timestamps patch
named service after the corresponding binary
simplified scripts
Diffstat (limited to 'testing/knot/knot.pre-install')
-rw-r--r-- | testing/knot/knot.pre-install | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/knot/knot.pre-install b/testing/knot/knot.pre-install index 9f270a34d2..6341b31360 100644 --- a/testing/knot/knot.pre-install +++ b/testing/knot/knot.pre-install @@ -1,4 +1,6 @@ #!/bin/sh -addgroup knot 2>/dev/null -adduser -H -s /sbin/nologin -S -D knot -G knot 2>/dev/null + +addgroup -G knot 2>/dev/null +adduser -s /sbin/nologin -G knot -S -D -H knot 2>/dev/null + exit 0 |