diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-10-02 20:02:36 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-10-02 20:02:58 +0200 |
commit | c1530a4a6b2beae6294f038befd5eb67c6f3b2f6 (patch) | |
tree | 93497f4672a82866a5043b07ca9f85d08be485f5 /community/knot | |
parent | 5d2c39afc02210d8db702ad194c852345d4a9db1 (diff) | |
download | aports-c1530a4a6b2beae6294f038befd5eb67c6f3b2f6.tar.bz2 aports-c1530a4a6b2beae6294f038befd5eb67c6f3b2f6.tar.xz |
community/knot: fix homedir of knot user
Diffstat (limited to 'community/knot')
-rw-r--r-- | community/knot/APKBUILD | 2 | ||||
-rw-r--r-- | community/knot/knot.pre-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/community/knot/APKBUILD b/community/knot/APKBUILD index 1398b4a3c7..644f13b266 100644 --- a/community/knot/APKBUILD +++ b/community/knot/APKBUILD @@ -5,7 +5,7 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=knot pkgver=2.3.0 -pkgrel=1 +pkgrel=2 pkgdesc="An high-performance authoritative-only DNS server" url="https://www.knot-dns.cz" arch="all" diff --git a/community/knot/knot.pre-install b/community/knot/knot.pre-install index 6fc6e21461..9313ba5b04 100644 --- a/community/knot/knot.pre-install +++ b/community/knot/knot.pre-install @@ -1,6 +1,6 @@ #!/bin/sh addgroup -S knot 2>/dev/null -adduser -S -D -H -s /sbin/nologin -G knot -g knot knot 2>/dev/null +adduser -S -D -H -h /var/lib/knot -s /sbin/nologin -G knot -g knot knot 2>/dev/null exit 0 |