Files
ansible/roles/ubuntu/tasks/remove_ubuntu_banner.yml
Tuan-Dat Tran 6dc7e5ac27 Added ubuntu setup
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
2025-02-10 21:33:40 +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