diff options
author | Dennis Przytarski <dennis@przytarski.com> | 2015-08-18 11:49:51 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-08-20 11:12:26 +0000 |
commit | ce636e6686b051fb21a68dac5fac771c9fe93b5f (patch) | |
tree | d35343d817183f80a21d41fed31300a86ec2a17a | |
parent | 0396e216704f6d589d8d1cd27b2650e07b178d55 (diff) | |
download | aports-ce636e6686b051fb21a68dac5fac771c9fe93b5f.tar.bz2 aports-ce636e6686b051fb21a68dac5fac771c9fe93b5f.tar.xz |
testing/knot: fixed pre-install script
the option G is unrecognized for addgroup
-rw-r--r-- | testing/knot/APKBUILD | 2 | ||||
-rw-r--r-- | testing/knot/knot.pre-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testing/knot/APKBUILD b/testing/knot/APKBUILD index 0ed5305d81..d4a9e7a99a 100644 --- a/testing/knot/APKBUILD +++ b/testing/knot/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=knot pkgver=2.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="An high-performance authoritative-only DNS server" url="https://www.knot-dns.cz" arch="all" diff --git a/testing/knot/knot.pre-install b/testing/knot/knot.pre-install index 6341b31360..57bc7044f7 100644 --- a/testing/knot/knot.pre-install +++ b/testing/knot/knot.pre-install @@ -1,6 +1,6 @@ #!/bin/sh -addgroup -G knot 2>/dev/null +addgroup -S knot 2>/dev/null adduser -s /sbin/nologin -G knot -S -D -H knot 2>/dev/null exit 0 |