From 65b7d8b02a73476d30a5fcc9a97ceafe877ad039 Mon Sep 17 00:00:00 2001 From: Andy McCrae Date: Fri, 12 Sep 2014 18:11:47 +0100 Subject: [PATCH] Adjust the user variables location for the maassetup.sh script The vars location has moved, this adjusts the maassetup.sh to account for this. --- scripts/maassetup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/maassetup.sh b/scripts/maassetup.sh index 2c66713577..865615eab8 100755 --- a/scripts/maassetup.sh +++ b/scripts/maassetup.sh @@ -3,14 +3,14 @@ set -x # Install all the things pushd /root/ansible-lxc-rpc/rpc_deployment # Setup the MaaS/Raxmon stuff - ansible-playbook -e @vars/user_variables.yml playbooks/monitoring/raxmon-setup.yml + ansible-playbook -e @/etc/rpc_deploy/user_variables.yml playbooks/monitoring/raxmon-setup.yml # Setup Local tests - ansible-playbook -e @vars/user_variables.yml playbooks/monitoring/maas_local.yml + ansible-playbook -e @/etc/rpc_deploy/user_variables.yml playbooks/monitoring/maas_local.yml # Setup Global Tests - ansible-playbook -e @vars/user_variables.yml playbooks/monitoring/maas_remote.yml + ansible-playbook -e @/etc/rpc_deploy/user_variables.yml playbooks/monitoring/maas_remote.yml # Setup Dell OpenManage Tests (Uncomment this if you want to install those monitors) - ansible-playbook -e @vars/user_variables.yml playbooks/monitoring/maas_dell_hardware.yml + ansible-playbook -e @/etc/rpc_deploy/user_variables.yml playbooks/monitoring/maas_dell_hardware.yml popd