main/gdnsd: use /sbin/nologin as shell

This commit is contained in:
Natanael Copa 2013-09-04 12:04:42 +00:00
parent 9d2e5c3a9e
commit cc2f56da01
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=gdnsd
pkgver=1.9.0
pkgrel=1
pkgrel=2
pkgdesc="Geographic Authoritative DNS server"
url="https://github.com/blblack/gdnsd/"
arch="all"

View File

@ -1,5 +1,5 @@
#!/bin/sh
addgroup gdnsd 2>/dev/null
adduser -S -H -h /dev/null -s /bin/false -D -G gdnsd gdnsd 2>/dev/null
adduser -S -H -h /dev/null -s /sbin/nologin -D -G gdnsd gdnsd 2>/dev/null
exit 0