]> arthur.barton.de Git - AnsibleRoles.git/blobdiff - roles/debian-base/tasks/main.yml
Apt module: Update "state=installed" to "state=present"
[AnsibleRoles.git] / roles / debian-base / tasks / main.yml
index 72a5b0b286071afc2990304612f2f2facafa9e3d..4c6f6c0f608657f31d4f6b6d620ed79841c78251 100644 (file)
@@ -5,7 +5,7 @@
   tags:
     - packages
   apt: >
-    state=installed
+    state=present
     name={{ item }}
   with_items:
     - bash-completion
@@ -29,7 +29,7 @@
   tags:
     - packages
   apt: >
-    state=installed
+    state=present
     name={{ item }}
   with_items:
     - busybox-static
@@ -39,7 +39,7 @@
   tags:
     - packages
   apt: >
-    state=installed
+    state=present
     name=linux-image-amd64
   when: "ansible_architecture == 'x86_64' and ansible_kernel.find('pve') < 1 and ansible_virtualization_type != 'openvz'"
 
@@ -47,6 +47,6 @@
   tags:
     - packages
   apt: >
-    state=installed
+    state=present
     name=linux-image-686-pae
   when: "ansible_architecture == 'i386' and ansible_kernel.find('pve') < 1 and ansible_virtualization_type != 'openvz'"