Skip to content

Commit

Permalink
Fix installer replacement syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Jan 10, 2019
1 parent 20672d9 commit ed025d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/foreman_installer/tasks/install.yml
Expand Up @@ -18,7 +18,7 @@

- name: 'Replace certs-tar and --inital-admin parms with legacy options'
set_fact:
foreman_installer_options_joined: "{{ foreman_installer_options_joined | replace( item.new, item.old }}"
foreman_installer_options_joined: "{{ foreman_installer_options_joined | replace(item.new, item.old) }}"
when: foreman_installer_version_file['content'] | b64decode is version('1.21', '<')
with_items:
- { new: '--certs-tar-file', old: '--foreman-proxy-content-certs-tar' }
Expand Down

0 comments on commit ed025d1

Please sign in to comment.