Преглед изворни кода

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 пре 6 година
родитељ
комит
6469c63a41
1 измењених фајлова са 1 додато и 1 уклоњено
  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