From 6eb169b2153c6723a642f9c9bef20c8bf95e8aea Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 10 Dec 2013 10:06:51 +0100 Subject: [PATCH] Fix vm bootstrapping refs #5223 --- test/jenkins/bootstrap-vm.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/jenkins/bootstrap-vm.sh b/test/jenkins/bootstrap-vm.sh index 586938d5d..b12896fc6 100755 --- a/test/jenkins/bootstrap-vm.sh +++ b/test/jenkins/bootstrap-vm.sh @@ -1,8 +1,8 @@ #!/bin/sh if [ "$1" != "--force" ]; then - echo 'This script is NOT intended to be ran by an individual user.' \ + echo 'This script is NOT intended to be ran by an individual user.' \ 'If you are not human, pass "--force" as the first option to it!' - exit 1 + exit 1 fi if [ $# -lt 3 ]; then @@ -18,12 +18,12 @@ host=$3 SSH_OPTIONS="-o PasswordAuthentication=no" SSH="ssh $SSH_OPTIONS $user@$host" -$SSH "mkdir -p /tmp/icinga2/puppet-stuff" -scp -r ../../.vagrant-puppet $user@$host:/tmp/icinga2/puppet-stuff +$SSH "mkdir /vagrant" +scp -qr ../../.vagrant-puppet $user@$host:/vagrant $SSH "groupadd vagrant" $SSH "echo '10.10.27.1 packages.icinga.org' >> /etc/hosts" -$SSH "puppet apply --modulepath=/tmp/icinga2/puppet-stuff/modules" \ - " /tmp/icinga2/puppet-stuff/manifests/default.pp" +$SSH "puppet apply --modulepath=/vagrant/.vagrant-puppet/modules" \ + " /vagrant/.vagrant-puppet/manifests/default.pp" exit 0