Files
ansible-edge/roles/setup/tasks/remove_ubuntu_banner.yml
2025-01-24 08:55:45 +01:00

18 lines
488 B
YAML

---
- name: Backup Ubuntu Pro banner configuration
ansible.builtin.command: mv /etc/apt/apt.conf.d/20apt-esm-hook.conf /etc/apt/apt.conf.d/20apt-esm-hook.conf.bak
args:
removes: /etc/apt/apt.conf.d/20apt-esm-hook.conf
become: true
- name: Create empty Ubuntu Pro banner configuration
ansible.builtin.file:
path: /etc/apt/apt.conf.d/20apt-esm-hook.conf
state: touch
become: true
- name: Update apt cache
ansible.builtin.apt:
update_cache: true
become: true