Merge pull request #61 from jamatute/fix/package_manager

* change `ansible_pkg_mgr` for package
This commit is contained in:
Matt Willsher 2017-10-19 20:42:06 +01:00 committed by GitHub
commit 5908f94b0f

View file

@ -16,13 +16,11 @@
tags: tags:
- sshd - sshd
- name: Installed - name: Install ssh packages
action: > package:
{{ ansible_pkg_mgr }} name: "{{ item }}"
name="{{ item }}" state: present
state=installed
with_items: "{{ sshd_packages }}" with_items: "{{ sshd_packages }}"
when: ansible_pkg_mgr != 'unknown'
tags: tags:
- sshd - sshd