You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
438 B

---
- name: debian update package
tags: packages
apt: pkg={{item}} state=latest update_cache=yes
with_items: deb_packages_to_update
when: ansible_distribution == 'Debian'
- name: centos update packages
tags: packages
yum: name={{item}} state=latest update_cache=yes
with_items: yum_packages_to_update
when: ansible_distribution == 'CentOS' or ansible_distribution == 'CloudLinux' or ansible_distribution == 'Virtuozzo'