Browse Source

fixed bug when updating the openshift-master sysconfig file. Also, made it multi-line so we get better errors from ansible.

Thomas Wiest 10 years ago
parent
commit
de2fa14b28
1 changed files with 2 additions and 1 deletions
  1. 2 1
      roles/openshift_master/tasks/main.yml

+ 2 - 1
roles/openshift_master/tasks/main.yml

@@ -13,7 +13,8 @@
     regexp: "{{ item.regex }}"
     line: "{{ item.line }}"
   with_items:
-    - { regex: '^OPTIONS=', line: "OPTIONS=\"--public-master={{ oo_public_ip }} --nodes={{ oo_node_ips | join(",") }}  --loglevel=5\"" }
+    - regex: '^OPTIONS='
+      line: "OPTIONS=\"--public-master={{ oo_public_ip }} --nodes={{ oo_node_ips | join(',') }}  --loglevel=5\""
   notify:
     - restart openshift-master