main/bacula: use /sbin/nologin as shell

This commit is contained in:
Natanael Copa 2013-09-04 11:46:01 +00:00
parent 17185d152b
commit f7ad04a191
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname="bacula"
pkgver=5.2.13
pkgrel=1
pkgrel=2
pkgdesc="Enterprise ready, network based backup program"
url="http://www.bacula.org"
arch="all"

View File

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