diff options
author | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2004-11-05 18:21:25 +0000 |
---|---|---|
committer | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2004-11-05 18:21:25 +0000 |
commit | 3f46d5eea97849f168858aed7d2c54d552159bef (patch) | |
tree | 70b5998f7a58dc4436963c35314cf256a7a5baac /www/apache13+ipv6/files/apache.sh | |
parent | . Unbreak by adding respect for PTHREAD_LIBS and PTHREAD_CFLAGS. (diff) |
Upgrade to 1.3.33.
Submitted by: hrs
Notes
Notes:
svn path=/head/; revision=120899
Diffstat (limited to 'www/apache13+ipv6/files/apache.sh')
-rw-r--r-- | www/apache13+ipv6/files/apache.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/apache13+ipv6/files/apache.sh b/www/apache13+ipv6/files/apache.sh index 03e31dd16321..5b612e5aa804 100644 --- a/www/apache13+ipv6/files/apache.sh +++ b/www/apache13+ipv6/files/apache.sh @@ -13,9 +13,9 @@ # # DO NOT CHANGE THESE DEFAULT VALUES HERE # -apache_enable="NO" -apache_flags="" -apache_pidfile="/var/run/httpd.pid" +apache_enable=${apache_enable-"NO"} +apache_flags=${apache_flags-""} +apache_pidfile=${apache_pidfile-"/var/run/httpd.pid"} . %%RC_SUBR%% @@ -27,6 +27,6 @@ load_rc_config $name pidfile="${apache_pidfile}" -start_precmd="`/usr/bin/limits -e -U www`" +start_cmd="echo \"Starting ${name}.\"; /usr/bin/limits -U www ${command} ${apache_flags} ${command_args}" run_rc_command "$1" |