Skip to content

Commit

Permalink
Make the pipeline use the post install script (#481)
Browse files Browse the repository at this point in the history
merging post install into the pipeline
  • Loading branch information
cbaxley authored Oct 24, 2024
1 parent a5196ac commit 31039b6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions testing/v2/installers/install_v2/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,11 @@ fi
echo "Running check-fleet script"
ssh -o StrictHostKeyChecking=no $user@$hostname "sudo -E bash -c 'source /opt/lme/lme-environment.env && su $user -c \". ~/.bashrc && cd ~/LME && ./testing/v2/installers/lib/check_fleet.sh\"'"

echo "Running set-fleet script"
ssh -o StrictHostKeyChecking=no $user@$hostname "sudo -E bash -c 'cd ~/LME/ansible && ansible-playbook set_fleet.yml -e \"debug_mode=true\"'"
#echo "Running set-fleet script"
#ssh -o StrictHostKeyChecking=no $user@$hostname "sudo -E bash -c 'cd ~/LME/ansible && ansible-playbook set_fleet.yml -e \"debug_mode=true\"'"

echo "Running post install script"
ssh -o StrictHostKeyChecking=no $user@$hostname "sudo -E bash -c 'cd ~/LME/ansible && ansible-playbook post_install_local.yml -e \"debug_mode=true\"'"

echo "Installation and configuration completed successfully."

Expand Down

0 comments on commit 31039b6

Please sign in to comment.