Skip to content
Snippets Groups Projects
Commit 35a45819 authored by nimrod's avatar nimrod
Browse files

- Added debug messages.

- Gather facts after bootstraping.
parent a9ad9aa5
Branches
No related tags found
No related merge requests found
......@@ -11,6 +11,9 @@
register: debian_bootstrap_install_python
changed_when: "'Unpacking' in debian_bootstrap_install_python.stdout"
- name: Gather facts
setup:
- name: APT install
apt:
name:
......@@ -23,6 +26,11 @@
collectd_facts:
register: collectd_facts
- name: Debug
debug:
var: collectd_facts
verbosity: 2
- name: Assertions
assert:
that:
......@@ -35,6 +43,11 @@
nginx_facts:
register: nginx_facts
- name: Debug
debug:
var: nginx_facts
verbosity: 2
- name: Assertions
assert:
that:
......@@ -50,6 +63,11 @@
path: /etc/ssl/dhparams.pem
register: missing_dhparams
- name: Debug
debug:
var: missing_dhparams
verbosity: 2
- name: Assertions
assert:
that:
......@@ -70,6 +88,11 @@
path: /etc/ssl/dhparams.pem
register: existing_dhparams
- name: Debug
debug:
var: existing_dhparams
verbosity: 2
- name: Assertions
assert:
that:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment