summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorBjörn Geiger2011-10-10 14:58:37 +0200
committerBjörn Geiger2011-10-10 14:58:37 +0200
commitb4d972ba8884a7ad02399d6cad3004f18ed85459 (patch)
tree4f6ab7501535997234305334a3d863446afc6f5b /install.sh
parentkleine Änderung (diff)
downloadpoolctrl-b4d972ba8884a7ad02399d6cad3004f18ed85459.tar.gz
poolctrl-b4d972ba8884a7ad02399d6cad3004f18ed85459.tar.xz
poolctrl-b4d972ba8884a7ad02399d6cad3004f18ed85459.zip
Edit Event geändert, noch nicht vollständig
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index c33987c..a0445c8 100755
--- a/install.sh
+++ b/install.sh
@@ -15,7 +15,7 @@ echo "Copying to /var/www/"
sourceDir=$(readlink -f $(dirname $(readlink -f $0)))
echo -n "enter vhost name: "
read vhost_name
-sed -e "37s/\$/$vhost_name/" -i $targetDir/application/configs/application.ini
+sed -e "38s/\$/$vhost_name/" -i $targetDir/application/configs/application.ini
targetDir="/var/www/$vhost_name"
mkdir -p $targetDir
cp -R $sourceDir/* $targetDir
@@ -72,12 +72,12 @@ sed -e "21s/\$/$pbs2_host/" -i $targetDir/application/configs/application.ini
echo -n "Please enter host of gearman server [localhost]: "
read gearman_server_host
[ "x" = "x$gearman_server_host" ] && gearman_server_host="localhost"
-sed -e "40s/\$/$gearman_server_host/" -i $targetDir/application/configs/application.ini
+sed -e "41s/\$/$gearman_server_host/" -i $targetDir/application/configs/application.ini
echo -n "Please enter port of gearman server [4730]: "
read gearman_server_port
[ "x" = "x$gearman_server_port" ] && gearman_server_port="4730"
-sed -e "41s/\$/$gearman_server_port/" -i $targetDir/application/configs/application.ini
+sed -e "42s/\$/$gearman_server_port/" -i $targetDir/application/configs/application.ini
echo "Create database and tables"
cat $targetDir/setup/poolctrl.sql | sed -e "s,##poolctrl##,$db_name," > /tmp/poolctrl.sql