Explorar el Código

Fix issue with cockpit package list

The package list contains an item which is a list by default.  The list
is converted to a comma separated string to conform to the pattern used
by the package command.
Russell Teague hace 6 años
padre
commit
6469c63a41
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      roles/cockpit/tasks/main.yml

+ 1 - 1
roles/cockpit/tasks/main.yml

@@ -12,7 +12,7 @@
     - cockpit-system
     - cockpit-bridge
     - cockpit-docker
-    - "{{ cockpit_plugins }}"
+    - "{{ cockpit_plugins | join(',') }}"
   when: not openshift_is_atomic | bool
   register: result
   until: result is succeeded