Change latest by present
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Adrien Reslinger 2020-06-02 00:30:37 +02:00
parent 440305d0fc
commit 3f730149ac
2 changed files with 8 additions and 2 deletions

View file

@ -3,4 +3,7 @@
include_tasks: add_repo_{{ ansible_os_family }}.yml
- name: Install packages
package: name='{{ powershell_packages }}' state=latest update_cache=yes
package:
name: '{{ powershell_packages }}'
state: present
update_cache: yes

View file

@ -23,4 +23,7 @@
- ansible_distribution == "Debian"
- name: Remove AnsiPowerShellble's packages
package: name='{{ powershell_packages }}' state=absent update_cache=yes
package:
name: '{{ powershell_packages }}'
state: absent
update_cache: yes