diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-04 12:06:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-04 12:15:08 +0000 |
commit | f10cfa5edf50fdff026e2a29174d1ade8e96f02a (patch) | |
tree | 31750a5df89916640882b1a16c74226b6d087a07 | |
parent | fb4e7e82a62279dbce45e9ae0e34baadd2957937 (diff) | |
download | aports-f10cfa5edf50fdff026e2a29174d1ade8e96f02a.tar.bz2 aports-f10cfa5edf50fdff026e2a29174d1ade8e96f02a.tar.xz |
main/lighttpd: use /sbin/nologin as shell
-rw-r--r-- | main/lighttpd/APKBUILD | 2 | ||||
-rw-r--r-- | main/lighttpd/lighttpd.pre-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/lighttpd/APKBUILD b/main/lighttpd/APKBUILD index b1f4679050..54be66e7ea 100644 --- a/main/lighttpd/APKBUILD +++ b/main/lighttpd/APKBUILD @@ -2,7 +2,7 @@ pkgname=lighttpd pkgver=1.4.32 _streamver=2.2.0 -pkgrel=0 +pkgrel=1 pkgdesc="a secure, fast, compliant and very flexible web-server" url="http://www.lighttpd.net/" arch="all" diff --git a/main/lighttpd/lighttpd.pre-install b/main/lighttpd/lighttpd.pre-install index 4682680d6b..4ff00ea20d 100644 --- a/main/lighttpd/lighttpd.pre-install +++ b/main/lighttpd/lighttpd.pre-install @@ -1,4 +1,4 @@ #!/bin/sh -adduser -H -h /var/www/localhost/htdocs -s /bin/false -D lighttpd 2>/dev/null +adduser -H -h /var/www/localhost/htdocs -s /sbin/nologin -D lighttpd 2>/dev/null exit 0 |