Removed warning message from Ansible 57/104457/1
authorBengt Thuree <bthuree@linuxfoundation.org>
Thu, 26 Mar 2020 01:22:18 +0000 (12:22 +1100)
committerBengt Thuree <bthuree@linuxfoundation.org>
Thu, 26 Mar 2020 01:25:21 +0000 (12:25 +1100)
Upgrade requires a string, not a boolean.

Issue-ID: CIMAN-33
Signed-off-by: Bengt Thuree <bthuree@linuxfoundation.org>
Change-Id: I0a03702e2cfb00b06e9a783fd5ce3b95dcee0e29

packer/provision/local-builder.yaml
packer/provision/local-docker.yaml

index 162ac3f..3460981 100644 (file)
@@ -14,7 +14,7 @@
 
     - name: Update and upgrade apt packages
       apt:
-        upgrade: yes
+        upgrade: 'yes'
         update_cache: yes
       become: true
       when: ansible_distribution == 'Ubuntu'
index 5811270..0948cd0 100644 (file)
@@ -79,7 +79,7 @@
 
     - name: Update and upgrade apt packages
       apt:
-        upgrade: yes
+        upgrade: 'yes'
         update_cache: yes
       become: true
       when: ansible_distribution == 'Ubuntu'