Skip to content

Commit

Permalink
Update some task tests and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Jul 9, 2018
1 parent 12229f1 commit 5db997c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- Fix jinja2 retry_join loops (thanks @Logan2211)
- Dependency Management Improvements (thanks @Logan2211)
- Update some deprecated tests in main tasks
- Update CONTRIBUTORS
- Update documentation

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Windows Server 2012 R2. It might work with other software versions, but is
definitely known to work with the following specific software versions:

* Consul: 1.2.0
* Ansible: 2.6.0
* Ansible: 2.6.1
* CentOS: 7
* Debian: 9
* FreeBSD: 11
Expand Down
2 changes: 1 addition & 1 deletion examples/README_VAGRANT.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ BOX_NAME=freebsd/FreeBSD-11.0-STABLE CONSUL_IFACE=em1 vagrant up
1. This project functions with the following software versions:
* Consul version 1.2.0
* Ansible: 2.6.0
* Ansible: 2.6.1
* VirtualBox version 5.2.12
* Vagrant version 2.1.2
* Vagrant Hosts plugin version 2.8.1
Expand Down
6 changes: 3 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
- name: Reload systemd
systemd:
daemon_reload: yes
when: systemd_unit | changed
when: systemd_unit is changed

- name: Create smf manifest
template:
Expand All @@ -245,13 +245,13 @@
- name: Import smf manifest
shell: "svccfg import {{ consul_smf_manifest }}"
when:
- smfmanifest | changed
- smfmanifest is changed
- ansible_os_family == "Solaris"

- name: Import smf script
shell: "svcadm refresh consul"
when:
- smfmanifest | changed
- smfmanifest is changed
- ansible_os_family == "Solaris"

- block:
Expand Down

0 comments on commit 5db997c

Please sign in to comment.