aboutsummaryrefslogtreecommitdiff
path: root/templates/vserver-legacy.d/etc/rc.d/rc.httpd
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2007-02-09 16:44:20 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2007-02-09 16:44:20 +0000
commitbd5a14836a8967b9ff8b8ed1c14a0b1d8289ea52 (patch)
treeec801fc9d595e3cf483c564f0d1d9a0f6858ba52 /templates/vserver-legacy.d/etc/rc.d/rc.httpd
parentf7595585fae0e0844877ad111388837aaf74028b (diff)
downloadsimplepkg-bd5a14836a8967b9ff8b8ed1c14a0b1d8289ea52.tar.gz
simplepkg-bd5a14836a8967b9ff8b8ed1c14a0b1d8289ea52.tar.bz2
lots of changes:
- jail-update renamed to jail-commit - mkjail, jail-commit and templatepkg with svn support - templates now has permission tracking - etc git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@164 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'templates/vserver-legacy.d/etc/rc.d/rc.httpd')
-rw-r--r--templates/vserver-legacy.d/etc/rc.d/rc.httpd21
1 files changed, 0 insertions, 21 deletions
diff --git a/templates/vserver-legacy.d/etc/rc.d/rc.httpd b/templates/vserver-legacy.d/etc/rc.d/rc.httpd
deleted file mode 100644
index 00b8837..0000000
--- a/templates/vserver-legacy.d/etc/rc.d/rc.httpd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-#
-# /etc/rc.d/rc.httpd
-#
-# Start/stop/restart the Apache web server.
-#
-# To make Apache start automatically at boot, make this
-# file executable: chmod 755 /etc/rc.d/rc.httpd
-#
-
-case "$1" in
- 'start')
- /usr/sbin/apachectl start ;;
- 'stop')
- /usr/sbin/apachectl stop ;;
- 'restart')
- /usr/sbin/apachectl restart ;;
- *)
- echo "usage $0 start|stop|restart" ;;
-esac
-