forked from kpx-dev/ansible-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from ernestas-poskus/features/require_ansible_2_4
Require ansible 2.4
- Loading branch information
Showing
7 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
- include: tarball.yml | ||
- include_tasks: tarball.yml | ||
|
||
- include: upstart.yml | ||
- include_tasks: upstart.yml | ||
when: not zookeeper_debian_systemd_enabled | ||
tags: deploy | ||
|
||
- include: systemd.yml | ||
- include_tasks: systemd.yml | ||
when: zookeeper_debian_systemd_enabled | ||
tags: deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
|
||
- include: Debian.yml | ||
- include_tasks: Debian.yml | ||
when: ansible_os_family == 'Debian' and zookeeper_debian_apt_install | ||
|
||
- include: Debian-tarball.yml | ||
- include_tasks: Debian-tarball.yml | ||
when: ansible_os_family == 'Debian' and not zookeeper_debian_apt_install | ||
|
||
- include: RedHat.yml | ||
- include_tasks: RedHat.yml | ||
when: ansible_os_family == 'RedHat' | ||
|
||
- include: common-config.yml | ||
- include_tasks: common-config.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters