diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2004-07-27 11:17:11 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2004-07-27 11:17:11 +0000 |
commit | ea9c5486047026264d81018b6811fe9e07a85ce0 (patch) | |
tree | c9d33b4f4bddca9ef9637cbd8ee8ba95f5b91a18 | |
parent | Fix <http://www.freebsd.org/ports/portaudit/f67ea071-dfb8-11d8-9b0a-000347a4f... (diff) |
Move 'limits' from start_precmd to start_cmd because with new localpkg
it affects all subsequent scripts.
Notes
Notes:
svn path=/head/; revision=114862
-rw-r--r-- | www/apache13/Makefile | 2 | ||||
-rw-r--r-- | www/apache13/files/apache.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/www/apache13/Makefile b/www/apache13/Makefile index be4927de7cac..dee20d819ea1 100644 --- a/www/apache13/Makefile +++ b/www/apache13/Makefile @@ -7,7 +7,7 @@ PORTNAME= apache PORTVERSION= 1.3.31 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} DISTNAME= apache_${PORTVERSION} diff --git a/www/apache13/files/apache.sh b/www/apache13/files/apache.sh index 3e3cdff59aba..4708d4fe1f66 100644 --- a/www/apache13/files/apache.sh +++ b/www/apache13/files/apache.sh @@ -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} ${rc_flags} ${command_args}" run_rc_command "$1" |