Skip to content

Commit

Permalink
fixed wrong parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWillner committed Jun 14, 2012
1 parent 2b32c5e commit b942358
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/main/scripts/infra_berlin.sh
Expand Up @@ -8,7 +8,7 @@ fokus_server="sshsrv.fokus.fraunhofer.de"

fokus0_server="192.168.144.56"
fokus0_user="teagle"
fokus0_cleanup="sudo killall impd"
fokus0_cleanup="sudo killall impd iperf"

raven_server="192.168.144.12"
raven_user="teagle"
Expand All @@ -27,6 +27,7 @@ raven_ptm_url="reqproc"

av_server="teagle.av.tu-berlin.de"
av_user="root"
av_cleanup="sudo killall impd iperf"
av_repo_ui_port="8000"
av_repo_ui_screen="repogui"
av_repo_ui_start="${raven_repo_ui_start}"
Expand Down Expand Up @@ -152,10 +153,16 @@ cleanup () {
echo "Syntax: cleanup <vct>"
exit 1
fi

ssh -t "${fokus_user}"@"${fokus_server}" \
ssh -o GSSAPIAuthentication=no \
-t "${fokus0_user}"@"${fokus0_server}" "${fokus0_cleanup}"
./teagle_cli deleteVct $1

ssh -t "${fokus_user}"@"${fokus_server}" \
ssh -o GSSAPIAuthentication=no \
-t "${av_user}"@"${av_server}" "${av_cleanup}"

./teagle_cli deleteVct $2
}

showLogFokusPTM () {
Expand Down

0 comments on commit b942358

Please sign in to comment.