Removed my personal core-dump enabling from the default init script.
[ashd.git] / etc / debian / init.d-ashd
index 64a6efb..9fd1e42 100755 (executable)
@@ -16,7 +16,7 @@ PATH=/usr/local/bin:/usr/local/sbin:$PATH
 HTPARSER="$(which htparser || true)"
 PIDFILE=/var/run/ashd.pid
 PORTSPEC="plain"
-ROOTSPEC="patplex /usr/local/etc/ashd/rootpat"
+ROOTSPEC="dirplex /srv/www"
 [ -r /etc/default/locale ] && . /etc/default/locale
 [ -r /etc/default/ashd ] && . /etc/default/ashd
 [ -x "$HTPARSER" ] || exit 0
@@ -24,7 +24,6 @@ ROOTSPEC="patplex /usr/local/etc/ashd/rootpat"
 start() {
     export LANG
     log_daemon_msg "Starting HTTP server" "ashd"
-    ulimit -c unlimited
     start-stop-daemon -S -p "$PIDFILE" -qx "$HTPARSER" -- -Sf -p "$PIDFILE" -u nobody -r /var/tmp $PORTSPEC -- $ROOTSPEC
     log_end_msg $?
 }