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 /main/postgrey/postgrey.pre-install | |
parent | 7d92c53d875f7e7aa2f662d8b5e3a59375cb71a7 (diff) | |
download | aports-f33b4763cc363814a89068e391709759570ec9b9.tar.bz2 aports-f33b4763cc363814a89068e391709759570ec9b9.tar.xz |
main/postgrey: use /sbin/nologin as shell
Diffstat (limited to 'main/postgrey/postgrey.pre-install')
-rw-r--r-- | main/postgrey/postgrey.pre-install | 2 |
1 files changed, 1 insertions, 1 deletions
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 |