diff options
Diffstat (limited to 'trunk/add-webapp')
-rwxr-xr-x | trunk/add-webapp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/trunk/add-webapp b/trunk/add-webapp deleted file mode 100755 index 6468280..0000000 --- a/trunk/add-webapp +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -if [ $# != 2 ]; then - echo "usage: $0 <pkg name> <number installed>" 1>&2 - exit 1 -fi - -pkg=$1 # name of the package -num=$2 # number of packages installed - -if [ $num = 1 ]; then - # installation: restart web server if running, - # as there is a new configuration file - /sbin/service httpd condrestart -fi |