Merge "Don't install empty package name on old Ubuntu"

This commit is contained in:
Zuul 2019-04-13 14:12:12 +00:00 committed by Gerrit Code Review
commit e912cfc025
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@
state: present
become: True
with_items: "{{ debian_pkg_install }}"
when: ansible_os_family == 'Debian'
when:
- ansible_os_family == 'Debian'
- item != ""
register: apt_install_result
- name: Install deltarpm packages