summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wiest <twiest@users.noreply.github.com>2015-03-03 15:49:28 -0500
committerThomas Wiest <twiest@users.noreply.github.com>2015-03-03 15:49:28 -0500
commitd4658ec2e5004ff62051bc0ab8c88475237f543b (patch)
tree3ed457a3b4ee28caca95a23550aaade7a4b7c665
parent6a4398ec92aeca95a6d3387c3080615fedefcf19 (diff)
parent5da830c4e75c2c5f8c24ec89bb5774f463823d4f (diff)
downloadopenshift-d4658ec2e5004ff62051bc0ab8c88475237f543b.tar.gz
openshift-d4658ec2e5004ff62051bc0ab8c88475237f543b.tar.bz2
openshift-d4658ec2e5004ff62051bc0ab8c88475237f543b.tar.xz
openshift-d4658ec2e5004ff62051bc0ab8c88475237f543b.zip
Merge pull request #92 from liangxia/patch-1
remove extra '}'
-rw-r--r--roles/openshift_master/tasks/main.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml
index eb8c6a2bd..2f8f8b950 100644
--- a/roles/openshift_master/tasks/main.yml
+++ b/roles/openshift_master/tasks/main.yml
@@ -40,13 +40,13 @@
facts:
- section: master
option: debug_level
- value: "{{ openshift_master_debug_level }}" }
+ value: "{{ openshift_master_debug_level }}"
- section: master
option: public_ip
- value: "{{ openshift_public_ip }}" }
+ value: "{{ openshift_public_ip }}"
- section: master
option: externally_managed
- value: "{{ openshift_master_manage_service_externally }}" }
+ value: "{{ openshift_master_manage_service_externally }}"
- name: Start and enable openshift-master
service: name=openshift-master enabled=yes state=started