Browse Source

roles/lxc_guest: enable unattented upgrade

python3
Zolfa 3 years ago
parent
commit
7d08549f69
Signed by: zolfa GPG Key ID: E1A43B038C4D6616
2 changed files with 34 additions and 0 deletions
  1. +6
    -0
      roles/lxc_guest/handlers/main.yaml
  2. +28
    -0
      roles/lxc_guest/tasks/02-configure.yaml

+ 6
- 0
roles/lxc_guest/handlers/main.yaml View File

@ -4,4 +4,10 @@
name: '{{ vm_name }}'
state: 'restarted'
register: container_restart
- name: 'systemd daemon-reload'
systemd:
daemon_reload: true
delegate_to: '{{ vm_name }}'
connection: 'ssh_lxc'
...

+ 28
- 0
roles/lxc_guest/tasks/02-configure.yaml View File

@ -42,6 +42,18 @@
connection: 'ssh_lxc'
notify: 'restart container'
- name: 'configure | Debian | APT Unattended Upgrades'
apt:
pkg:
- 'unattended-upgrades'
- 'apt-listchanges'
state: 'present'
update_cache: true
cache_valid_time: 3600
delegate_to: '{{ vm_name }}'
when: distro == 'debian'
connection: 'ssh_lxc'
- name: 'configure | Debian | APT Periodic'
lineinfile:
path: '/etc/apt/apt.conf.d/02periodic'
@ -51,10 +63,26 @@
loop:
- { key: 'APT::Periodic::Enable', value: '1' }
- { key: 'APT::Periodic::Update-Package-Lists', value: '1' }
- { key: 'APT::Periodic::Download-Upgradeable-Packages', value: '1' }
- { key: 'APT::Periodic::Unattended-Upgrade', value: '1' }
- { key: 'APT::Periodic::AutocleanInterval', value: '21' }
- { key: 'APT::Periodic::Verbose', value: '2' }
delegate_to: '{{ vm_name }}'
when: distro == 'debian'
connection: 'ssh_lxc'
- name: 'configure | Debian | APT Periodic | Upgrade immediately after download'
blockinfile:
path: '/lib/systemd/system/apt-daily.service'
insertafter: '^After='
marker: '# {mark} LILiK-FIX [AnsibleManaged]: Install updates immediately after download'
block: |
Before=apt-daily-upgrade.service
Wants=apt-daily-upgrade.service
delegate_to: '{{ vm_name }}'
when: distro == 'debian'
connection: 'ssh_lxc'
notify: 'systemd daemon-reload'
- meta: 'flush_handlers'
...

Loading…
Cancel
Save