diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-19 08:55:00 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-19 08:55:00 +0000 |
commit | c739506cea93e0121a7ef1030f9bcff062309273 (patch) | |
tree | 43ad0ea46b5c7842b1e58eb1f2cdb31f584a2f9d /main/apache2 | |
parent | ffac84404992398e48e3d1ad80e44ada3390d808 (diff) | |
download | aports-c739506cea93e0121a7ef1030f9bcff062309273.tar.bz2 aports-c739506cea93e0121a7ef1030f9bcff062309273.tar.xz |
main/apache2: replace opts in init.d script
ref #943
Diffstat (limited to 'main/apache2')
-rw-r--r-- | main/apache2/APKBUILD | 4 | ||||
-rwxr-xr-x | main/apache2/apache2.initd | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/main/apache2/APKBUILD b/main/apache2/APKBUILD index d15c12e9e2..46e6c62ac1 100644 --- a/main/apache2/APKBUILD +++ b/main/apache2/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=apache2 pkgver=2.2.21 -pkgrel=1 +pkgrel=2 pkgdesc="A high performance Unix-based HTTP server" url="http://httpd.apache.org/" arch="all" @@ -248,7 +248,7 @@ d9667fcd2ffecc63e446edd4d6666731 10-nice.patch 1e5b222edcfbf99a3edc56fcb2074fbe 11-fix-htaccess-reads-for-persistent-connections.patch e322b5211e49511cac6e40c86af1b1da apache2.confd 75fe4138b98fcffd01b8c8c077b944f3 apache2.logrotate -0261136ff734c3ae8dcf878a46ed5830 apache2.initd +7105fc70298b24bfca6dba517f7486d7 apache2.initd 749faf0b2916d85d1240bc34f700e5d9 httpd.conf 5d0d024ca43571b863874ab871b2c109 ssl.conf b70fe826486043e3953cfe21f9e6fa16 ldap.conf diff --git a/main/apache2/apache2.initd b/main/apache2/apache2.initd index 03a6d03032..537f435ab2 100755 --- a/main/apache2/apache2.initd +++ b/main/apache2/apache2.initd @@ -2,12 +2,13 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -opts="configdump configtest fullstatus graceful gracefulstop modules reload virtualhosts" +extra_commands="configdump configtest modules virtualhosts" +extra_started_commands="fullstatus graceful gracefulstop reload" depend() { need net use mysql dns logger netmount postgresql - after sshd + after sshd firewall } configtest() { |