aboutsummaryrefslogtreecommitdiffstats
path: root/main/lighttpd
Commit message (Collapse)AuthorAgeFilesLines
* main/lighttpd: Fix lighttpd user's primary group.Przemyslaw Pawelczyk2016-06-032-2/+2
| | | | | | | | | | | | During mass .pre-install/upgrade init scripts changes there was a change not preserving status quo regarding group creation and user creation for 57 packages that weren't using -S option with adduser calls earlier. It led to not creating the group named like the user and changing primary user group from the same named to nogroup. It has been noticed thanks to lighttpd issue (refs #5666) and it has been partially fixed for lighttpd alone already. This patch completes the fix and is also an announcement for some mass changes coming later.
* main/lighttpd: fix group creationNatanael Copa2016-06-022-1/+2
| | | | ref #5666
* main/[various]: bump pkgrel for pre-install fixesPrzemyslaw Pawelczyk2016-04-251-1/+1
|
* Reorder arguments passed to addgroup/adduser in scripts.Przemyslaw Pawelczyk2016-04-251-1/+1
| | | | | | | Now all invocations have following order of arguments (if present): addgroup -S -g ... GROUP adduser -S -u ... -D -H -h ... -s ... -G ... -g ... USER
* Add -g option (GECOS/comment) to adduser in scripts.Przemyslaw Pawelczyk2016-04-251-1/+1
| | | | | | This way we can avoid ugly default: Linux user,,,
* Add lacking -S option (system) to adduser/addgroup in scripts.Przemyslaw Pawelczyk2016-04-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Groups and users created by packages shouldn't use high ids by default (unless explicitly requested), to distinguish them from groups and users created by administrators for humans. Following 41 files lacked -S next to addgroup: - community/sword/sword.pre-install - main/amavisd-new/amavisd-new.pre-install - main/chrony/chrony.pre-install - main/cvechecker/cvechecker.pre-install - main/dnsmasq/dnsmasq.pre-install - main/freeradius/freeradius.pre-install - main/gdnsd/gdnsd.pre-install - main/haproxy/haproxy.pre-install - main/haproxy/haproxy.pre-upgrade - main/kamailio/kamailio.pre-install - main/logcheck/logcheck.pre-install - main/mlmmj/mlmmj.pre-install - main/nrpe/nrpe.pre-install - main/open-vm-tools/open-vm-tools.pre-install - main/postgrey/postgrey.pre-install - main/privoxy/privoxy.pre-install - main/redis/redis.pre-install - main/samba/winbind.pre-install - main/sircbot/sircbot.pre-install - main/smokeping/smokeping.pre-install - main/squark/squark.post-install - main/squid/squid.pre-install - main/squid/squid.pre-upgrade - main/subversion/subversion.pre-install - main/trac/trac.pre-install - main/vsftpd/vsftpd.pre-install - main/zabbix/zabbix-agent.pre-install - testing/3proxy/3proxy.pre-install - testing/cluster-glue/cluster-glue.pre-install - testing/elasticsearch/elasticsearch.pre-install - testing/emby/emby.pre-install - testing/gdnsd/gdnsd.pre-install - testing/icinga2/icinga2.pre-install - testing/lusca/lusca.pre-install - testing/lusca/lusca.pre-upgrade - testing/mongodb/mongodb.pre-install - testing/openxcap/openxcap.pre-install - testing/prosody/prosody.pre-install - testing/rancid/rancid.pre-install - testing/rutorrent/rutorrent.pre-install - testing/zabbix/zabbix-agent.pre-install Following 60 files lacked -S next to adduser: - community/caddy/caddy.pre-install - community/domoticz/domoticz.pre-install - community/minetest/minetest-server.pre-install - community/oscam/oscam.pre-install - community/seafile/seafile-server.pre-install - community/syncthing/syncthing.pre-install - main/apache2/apache2.pre-install - main/aports-build/aports-build.pre-install - main/atheme-iris/atheme-iris.pre-install - main/bind/bind.pre-install - main/clamav/clamav-db.pre-install - main/clamsmtp/clamsmtp.pre-install - main/clamsmtp/clamsmtp.pre-upgrade - main/coova-chilli/coova-chilli.pre-install - main/cvechecker/cvechecker.pre-install - main/dhcp/dhcp.pre-install - main/distcc/distcc.pre-install - main/djbdns/dnscache.pre-install - main/djbdns/tinydns.pre-install - main/dovecot/dovecot.pre-install - main/ez-ipupdate/ez-ipupdate.pre-install - main/fetchmail/fetchmail.pre-install - main/freeswitch/freeswitch.pre-install - main/gitolite/gitolite.pre-install - main/gnats/gnats.pre-install - main/gross/gross.pre-install - main/icecast/icecast.pre-install - main/kamailio/kamailio.pre-install - main/lighttpd/lighttpd.pre-install - main/mariadb/mariadb.pre-install - main/memcached/memcached.pre-install - main/ngircd/ngircd.pre-install - main/nrpe/nrpe.pre-install - main/openntpd/openntpd.pre-install - main/postgrey/postgrey.pre-install - main/snort/snort.pre-install - main/squid/squid.pre-install - main/squid/squid.pre-upgrade - main/subversion/subversion.pre-install - main/trac/trac.pre-install - main/transmission/transmission-daemon.pre-install - main/ympd/ympd.pre-install - main/znc/znc.pre-install - testing/at/at.pre-install - testing/buildbot-slave/buildbot-slave.pre-install - testing/buildbot/buildbot.pre-install - testing/clapf/clapf.pre-install - testing/cluster-glue/cluster-glue.pre-install - testing/dbmail/dbmail.pre-install - testing/dspam/dspam.pre-install - testing/ejabberd/ejabberd.pre-install - testing/emby/emby.pre-install - testing/mongodb/mongodb.pre-install - testing/opensips/opensips.pre-install - testing/pdns/pdns.pre-install - testing/prosody/prosody.pre-install - testing/qpage/qpage.pre-install - testing/rrdbot/rrdbot.pre-install - testing/wt/wt.pre-install - unmaintained/ejabberd-git/ejabberd-git.pre-install
* Reorder options passed to addgroup in scripts: make -S first.Przemyslaw Pawelczyk2016-04-251-1/+1
| | | | It's only for consistency and to ease spotting lack of it.
* main/lighttpd: upgrade to 1.4.39Natanael Copa2016-02-241-5/+5
|
* main/lighttpd: upgrade to 1.4.38. Minor cleanups in init and logrotate ↵Valery Kartel2015-12-087-34/+48
| | | | scripts (second release)
* main/lighttpd: upgrade to 1.4.37Eivind Uggedal2015-09-121-4/+4
|
* Do not delete *.la files manuallyBartłomiej Piotrowski2015-09-101-1/+0
| | | | | Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
* main/lighttpd: upgrade to 1.4.36Natanael Copa2015-07-2730-16585/+6
|
* main/lighttpd: security fix for CVE-2015-3200Natanael Copa2015-07-0730-1/+16580
| | | | | | | The upstream patch does not apply without applying lot other stuff so we simply apply all since 1.4.35 release. ref #4329
* main/*: replace all sbin/runscript with sbin/openrc-runNatanael Copa2015-04-282-5/+5
|
* main/*: cleanup: remove pkgconfig from makedependsNatanael Copa2015-04-091-1/+1
| | | | it should be pulled in automatically
* main/lighttpd: add .svg, .svgz and .dmg to mime typesNatanael Copa2014-12-312-5/+8
|
* main/lighttpd: spawn-fcgi was removed in 1.4.23Eivind Uggedal2014-07-283-103/+1
|
* main/lighttpd: security upgrade to 1.4.35 (CVE-2014-2323,CVE-2014-2324)Natanael Copa2014-03-131-5/+5
| | | | ref #2762
* lighttpd: Added dbg (debug symbols) sub-packageAndrew Manison2014-03-031-2/+2
|
* main/lighttpd: upgrade to 1.4.34Natanael Copa2014-01-225-439/+5
|
* main/lighttpd: various sec fixes (CVE-2013-4508,CVE-2013-4559,CVE-2013-4560)Natanael Copa2013-11-155-1/+436
| | | | ref #2350
* main/lighttpd: add lighttpd to www-data groupNatanael Copa2013-10-283-2/+6
| | | | | | and make sure www-data is created on upgrade ref #2245
* main/lighttpd: upgrade to 1.4.33Bartłomiej Piotrowski2013-09-291-4/+4
|
* main/lighttpd: use /sbin/nologin as shellNatanael Copa2013-09-042-2/+2
|
* main/lighttpd: use /sbin/nologin as shellNatanael Copa2013-09-031-0/+24
|
* [all autotools packages]: normalize ./configureTimo Teräs2013-07-301-2/+6
|
* testing/dash: new aportNatanael Copa2012-11-261-21/+0
| | | | | Small and fast POSIX-compliant shell http://gondor.apana.org.au/~herbert/dash/
* main/lighttpd: upgrade to 1.4.32Natanael Copa2012-11-261-6/+3
|
* main/lighttpd: upgrade to 1.4.31Natanael Copa2012-06-041-3/+3
|
* main/lighttpd: rebuild against sqlite-libs and misc fixesNatanael Copa2012-05-313-11/+40
| | | | | - build fix for automake-1.12 - remove post-install and set owner from APKBUILD
* main/lighttpd: rebuild against pcre-8.30Natanael Copa2012-03-121-1/+1
|
* main/lighttpd: fix init.d scriptNatanael Copa2012-01-192-17/+17
| | | | ref #943
* main/lighttpd: upgrade to 1.4.30Natanael Copa2011-12-191-3/+3
|
* main/lighttpd: enable libev supportNatanael Copa2011-07-181-2/+3
|
* main/lighttpd: add webdav support and reorganizeNatanael Copa2011-07-181-9/+30
| | | | | | - rename lighttpd-264_streaming to lighttpd-mod_264_streaming - move mod_auth to subpackage. This removes libldap dependency - add mod_webdav subpackage
* main/lighttpd: upgrade to 1.4.29Natanael Copa2011-07-041-4/+5
|
* main/lighttpd: set /var/{run,log}/lighttpd permission on startNatanael Copa2011-05-032-2/+10
| | | | | | | Needed when server.user and server.group is not set to default value and we run from RAM. fixes #606
* main/lighttpd: add support for ldapLeonardo Arena2011-03-071-3/+3
|
* Set all packages with arch="x86 x86_64" to arch="all".William Pitcock2011-01-131-1/+1
|
* main/lighttpd: forgot to install new fpm configMatt Smith2011-01-092-4/+4
|
* main/lighttpd: added fastcgi fpm configMatt Smith2010-12-313-4/+24
|
* main/*: add archNatanael Copa2010-12-131-0/+1
|
* main/lighttpd: rebuild against fixed bzip2 (CVE-2010-0405)Natanael Copa2010-09-221-1/+1
|
* main/lighttpd: upgrade to 1.4.28Natanael Copa2010-08-231-2/+2
|
* main/lighttp: upgrade to 1.4.27Natanael Copa2010-08-163-40/+4
|
* main/lighttpd: rebuild against libssl-1.0Leonardo Arena2010-06-291-1/+1
|
* main/[various]: rebuild against openssl-1.0Natanael Copa2010-05-141-1/+1
|
* main/[various]: bump pkgrel to force rebuild against nptlNatanael Copa2010-05-041-1/+1
|
* main/lighttpd: fix handling of SSL_CTX_set_options() return valueNatanael Copa2010-03-172-4/+22
| | | | fixes #329
* main/lighttpd: fix version number in lighttpdNatanael Copa2010-03-122-2/+20
| | | | | | It should not pick up the git describe string from aports fixes #323