Explorar o 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 %!s(int64=6) %!d(string=hai) anos
pai
achega
6469c63a41
Modificáronse 1 ficheiros con 1 adicións e 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