feat(ansible): Ubuntu Jammy VI.
[csit.git] / fdio.infra.ansible / roles / common / tasks / main.yaml
index 7418709..7f122d2 100644 (file)
@@ -2,7 +2,7 @@
 # file: roles/common/tasks/main.yaml
 
 - name: Conf - Add permanent proxy settings
-  lineinfile:
+  ansible.builtin.lineinfile:
     path: "/etc/environment"
     state: "present"
     line: "{{ item.key }}={{ item.value }}"
@@ -12,7 +12,7 @@
     - common-conf-proxy
 
 - name: Inst - Update package cache (apt)
-  apt:
+  ansible.builtin.apt:
     update_cache: true
     cache_valid_time: 3600
   when:
     - common-inst-prerequisites
 
 - name: Inst - Prerequisites
-  package:
+  ansible.builtin.package:
     name: "{{ packages | flatten(levels=1) }}"
-    state: latest
+    state: "latest"
   tags:
     - common-inst-prerequisites
 
 - name: Inst - Meson (DPDK)
-  pip:
+  ansible.builtin.pip:
     name:
       - "meson==0.49.2"
   tags:
     - common-inst-meson
 
 - name: Conf - sudoers admin
-  lineinfile:
+  ansible.builtin.lineinfile:
     path: "/etc/sudoers"
     state: "present"
     regexp: "^%admin ALL="
@@ -45,7 +45,7 @@
     - common-conf-sudoers
 
 - name: Conf - sudoers nopasswd
-  lineinfile:
+  ansible.builtin.lineinfile:
     path: "/etc/sudoers"
     state: "present"
     regexp: "^%sudo"