main/ntop: use /sbin/nologin as shell

This commit is contained in:
Natanael Copa 2013-09-04 12:07:51 +00:00
parent 987020dabe
commit ca0c6b360c
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=ntop
pkgver=5.0.1
pkgrel=4
pkgrel=5
pkgdesc="Network traffic probe"
url="http://www.ntop.org"
arch="all"

View File

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