
Builds ephemeral ISO and target host images. Also replaces isogen (iso-builder) with a single ansible-driven build tool for both types of airship images used: ephemeral ISO as well as target QCOW2 images deployed to base nodes. Change-Id: I6d0368de771869e4e645a03d8a20f470b34602ab
20 lines
589 B
YAML
20 lines
589 B
YAML
- name: "unattended-upgrades | disable apt-daily timer"
|
|
file:
|
|
path: /etc/systemd/system/timers.target.wants/apt-daily.timer
|
|
state: absent
|
|
|
|
- name: "unattended-upgrades | disable apt-daily-upgrade timer"
|
|
file:
|
|
path: /etc/systemd/system/timers.target.wants/apt-daily-upgrade.timer
|
|
state: absent
|
|
|
|
- name: "unattended-upgrades | check for apt-daily cron"
|
|
stat:
|
|
path: /etc/cron.daily/apt-compat
|
|
register: stat_result
|
|
- name: "unattended-upgrades | disable apt-daily cron"
|
|
file:
|
|
path: /etc/cron.daily/apt-compat
|
|
mode: '0644'
|
|
when: stat_result.stat.exists
|