|
|
@ -1,15 +1,9 @@ |
|
|
|
--- |
|
|
|
|
|
|
|
- name: Upgrade all packages to the latest version (yum) |
|
|
|
yum: |
|
|
|
name: '*' |
|
|
|
state: latest |
|
|
|
when: ansible_os_family == "RedHat" |
|
|
|
|
|
|
|
- name: Install required packages |
|
|
|
yum: |
|
|
|
name: "{{ item }}" |
|
|
|
state: latest |
|
|
|
state: present |
|
|
|
with_items: |
|
|
|
- bind-utils |
|
|
|
- ntp |
|
|
@ -21,23 +15,13 @@ |
|
|
|
update_cache: yes |
|
|
|
cache_valid_time: 3600 |
|
|
|
name: "{{ item }}" |
|
|
|
state: latest |
|
|
|
state: present |
|
|
|
install_recommends: no |
|
|
|
with_items: |
|
|
|
- dnsutils |
|
|
|
- ntp |
|
|
|
when: ansible_os_family == "Debian" |
|
|
|
|
|
|
|
- name: Upgrade all packages to the latest version (apt) |
|
|
|
shell: apt-get -o \ |
|
|
|
Dpkg::Options::=--force-confdef -o \ |
|
|
|
Dpkg::Options::=--force-confold -q -y \ |
|
|
|
dist-upgrade |
|
|
|
environment: |
|
|
|
DEBIAN_FRONTEND: noninteractive |
|
|
|
when: ansible_os_family == "Debian" |
|
|
|
|
|
|
|
|
|
|
|
# Create deployment user if required |
|
|
|
- include: user.yml |
|
|
|
when: k8s_deployment_user is defined |
|
|
|