File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -eu
4
+
5
+ DEPLOYMENT_NAME=$( grep ' ec2_name_prefix' provisioner/tests/ci-common.yml | cut -d' ' -f2)
6
+ ADMIN_PASSWORD=$( grep ' admin_password' provisioner/tests/ci-common.yml | cut -d' ' -f2)
7
+
8
+ ansible-playbook provisioner/tests/rhel_verify.yml \
9
+ -i provisioner/${DEPLOYMENT_NAME} /instructor_inventory.txt \
10
+ --private-key=provisioner/${DEPLOYMENT_NAME} /${DEPLOYMENT_NAME} -private.pem \
11
+ -e tower_password=${ADMIN_PASSWORD} \
12
+ -e workshop_name=${DEPLOYMENT_NAME}
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ commands =
51
51
-e @provisioner/tests/vars.yml \
52
52
-e @provisioner/tests/ci-common.yml \
53
53
-e @provisioner/tests/ci-rhel.yml
54
+ bash ./provisioner/tests/verify-rhel.sh
54
55
commands_post =
55
56
ansible-playbook provisioner/teardown_lab.yml \
56
57
-e @provisioner/tests/vars.yml \
You can’t perform that action at this time.
0 commit comments