diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-04 12:10:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-04 12:15:10 +0000 |
commit | f33b4763cc363814a89068e391709759570ec9b9 (patch) | |
tree | fd7cc242df6e150d9c13289e3797ffd05cc5a5ab | |
parent | 7d92c53d875f7e7aa2f662d8b5e3a59375cb71a7 (diff) | |
download | aports-f33b4763cc363814a89068e391709759570ec9b9.tar.bz2 aports-f33b4763cc363814a89068e391709759570ec9b9.tar.xz |
main/postgrey: use /sbin/nologin as shell
-rw-r--r-- | main/postgrey/APKBUILD | 2 | ||||
-rw-r--r-- | main/postgrey/postgrey.pre-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/postgrey/APKBUILD b/main/postgrey/APKBUILD index 64bcd44b4..ff36d40e2 100644 --- a/main/postgrey/APKBUILD +++ b/main/postgrey/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Michael Mason <ms13sp@gmail.com> pkgname=postgrey pkgver=1.34 -pkgrel=1 +pkgrel=2 pkgdesc="Postfix policy server implementing greylisting" url="http://postgrey.schweikert.ch/" arch="noarch" diff --git a/main/postgrey/postgrey.pre-install b/main/postgrey/postgrey.pre-install index 3c34c3fd5..21dd01faa 100644 --- a/main/postgrey/postgrey.pre-install +++ b/main/postgrey/postgrey.pre-install @@ -1,6 +1,6 @@ #!/bin/sh addgroup postgrey 2>/dev/null -adduser -H -h /dev/null -s /bin/false -D postgrey 2>/dev/null +adduser -H -h /dev/null -s /sbin/nologin -D postgrey 2>/dev/null exit 0 |