-
Notifications
You must be signed in to change notification settings - Fork 7
/
vagrant-entrypoint.sh
executable file
·68 lines (54 loc) · 1.98 KB
/
vagrant-entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/sh
set -e
ips=$(hostname -I)
fqdn=$(hostname -f)
printf "127.0.0.1 localhost\n" > /etc/hosts
for ip in ${ips} ; do
printf "${ip} ${fqdn}\n" >> /etc/hosts ;
done
printf "[defaults]\nroles_path=/etc/ansible/roles\n" > /ansible/ansible.cfg
if [ ! -f /etc/ansible/lint.zip ]; then
wget https://github.com/ansible/galaxy-lint-rules/archive/master.zip -O \
/etc/ansible/lint.zip
unzip /etc/ansible/lint.zip -d /etc/ansible/lint
fi
ansible-lint -c /etc/ansible/roles/timorunge.freeipa_server/.ansible-lint -r \
/etc/ansible/lint/galaxy-lint-rules-master/rules \
/etc/ansible/roles/timorunge.freeipa_server
ansible-lint -c /etc/ansible/roles/timorunge.freeipa_server/.ansible-lint -r \
/etc/ansible/lint/galaxy-lint-rules-master/rules \
/ansible/test.yml
ansible-playbook /ansible/test.yml \
-i /ansible/inventory \
--syntax-check
ansible-playbook /ansible/test.yml \
-i /ansible/inventory \
--connection=local \
--become \
-vvvv
service systemd-resolved restart
ansible-playbook /ansible/test.yml \
-i /ansible/inventory \
--connection=local \
--become | \
grep -q "changed=0.*failed=0" && \
(echo "Idempotence test: pass" && exit 0) || \
(echo "Idempotence test: fail" && exit 1)
service ipa status >/dev/null 2>&1 && \
(echo "FreeIPA service status test: pass" && exit 0) || \
(echo "FreeIPA service status test: fail" && exit 1)
echo "Passw0rd" | \
kinit admin >/dev/null 2>&1 && \
(echo "FreeIPA kinit test: pass" && exit 0) || \
(echo "FreeIPA kinit test: fail" && exit 1)
ipa user-add john.doe \
--first=John \
--last=Doe >/dev/null 2>&1 && \
(echo "FreeIPA user-add test: pass" && exit 0) || \
(echo "FreeIPA user-add test: fail" && exit 1)
ipa user-show admin >/dev/null 2>&1 && \
(echo "FreeIPA user-show test: pass" && exit 0) || \
(echo "FreeIPA user-show test: fail" && exit 1)
curl -Ikso /dev/null https://${fqdn}/ipa/ui/ && \
(echo "FreeIPA httpd response test: pass" && exit 0) || \
(echo "FreeIPA httpd response test: fail" && exit 1)