Browse Source

Fix: set openshift_master_config_dir to the correct value.

Previous commit set 'openshift_master_config_dir' to
'/var/lib/origin' if undefined during upgrades.

This commit sets value to the proper directory '/etc/origin'
Michael Gugino 7 years ago
parent
commit
d1da791520
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_master/tasks/systemd_units.yml

+ 1 - 1
roles/openshift_master/tasks/systemd_units.yml

@@ -7,7 +7,7 @@
 # openshift_master_config_dir is set.
 - name: Set openshift_master_config_dir if unset
   set_fact:
-    openshift_master_config_dir: '/var/lib/origin'
+    openshift_master_config_dir: '/etc/origin'
   when: openshift_master_config_dir is not defined
 
 - name: Remove the legacy master service if it exists