diff options
author | P. J. McDermott <pjm@nac.net> | 2013-08-08 09:00:51 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-08-08 09:00:51 (EDT) |
commit | d20d4cb39b69c87379952afbf3a60381d238a9f4 (patch) | |
tree | 0b1fcd9166749c5fe1d5bae0bf736b5e54b02ae7 /src/etc/init.d/httpd | |
parent | d7af455965f6efcdbcba305dd7584c6ca7bb9cfd (diff) |
Remove old source files.
Diffstat (limited to 'src/etc/init.d/httpd')
-rwxr-xr-x | src/etc/init.d/httpd | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/etc/init.d/httpd b/src/etc/init.d/httpd deleted file mode 100755 index 6a3045d..0000000 --- a/src/etc/init.d/httpd +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -case "${1}" in - start) - printf 'Starting httpd...' - start-stop-daemon -S -q -n httpd -x httpd -- -h /var/www - printf 'done.' - ;; - stop) - printf 'Stopping httpd... ' - start-stop-daemon -K -q -n httpd - printf 'done.' - ;; - restart) - "${0}" stop - "${0}" start - ;; - *) - printf 'Usage: %s {start|stop|restart}\n' "${0}" - exit 1 - ;; -esac |