initial commits
This commit is contained in:
16
Maintenance/maint-reboot-required.yaml
Normal file
16
Maintenance/maint-reboot-required.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
- name: Check if system reboot is required
|
||||
hosts: "{{ my_hosts | d([]) }}"
|
||||
become: true
|
||||
|
||||
tasks:
|
||||
- name: Check if system reboot is required
|
||||
become: true
|
||||
ansible.builtin.stat:
|
||||
path: /var/run/reboot-required
|
||||
register: reboot_required
|
||||
|
||||
- name: Report if reboot is required
|
||||
ansible.builtin.debug:
|
||||
msg: "Reboot is required"
|
||||
when: reboot_required.stat.exists
|
||||
9
Maintenance/maint-reboot.yaml
Normal file
9
Maintenance/maint-reboot.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
- name: Reboot machine
|
||||
hosts: "{{ my_hosts | d([]) }}"
|
||||
become: true
|
||||
|
||||
tasks:
|
||||
- name: Reboot machine
|
||||
ansible.builtin.reboot:
|
||||
reboot_timeout: 3600
|
||||
27
Update/upd-apt.yaml
Normal file
27
Update/upd-apt.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
- name: Update and upgrade apt packages
|
||||
hosts: all
|
||||
|
||||
tasks:
|
||||
- name: Update packages with apt
|
||||
when: ansible_pkg_mgr == 'apt'
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
|
||||
- name: Update packages with yum
|
||||
when: ansible_pkg_mgr == 'yum'
|
||||
ansible.builtin.yum:
|
||||
name: '*'
|
||||
state: latest # noqa: package-latest
|
||||
|
||||
- name: Upgrade packages with apt
|
||||
when: ansible_pkg_mgr == 'apt'
|
||||
ansible.builtin.apt:
|
||||
upgrade: dist
|
||||
|
||||
- name: Upgrade packages with yum
|
||||
when: ansible_pkg_mgr == 'yum'
|
||||
ansible.builtin.yum:
|
||||
name: '*'
|
||||
state: latest # noqa: package-latest
|
||||
exclude: kernel*
|
||||
Reference in New Issue
Block a user