summaryrefslogtreecommitdiffstats
path: root/roles/openshift_facts/library
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2017-11-03 15:34:32 -0700
committerGitHub <noreply@github.com>2017-11-03 15:34:32 -0700
commit413fe019b488b75909629c68949ba693004afd6a (patch)
treefbac3883785c47aedd655467222f0bc17041bc99 /roles/openshift_facts/library
parent857ae368258799a747eb5f5868184cc6f71c8db4 (diff)
parentbaa6713c9581261acacef9b8dcf6fad51cfdac65 (diff)
downloadopenshift-413fe019b488b75909629c68949ba693004afd6a.tar.gz
openshift-413fe019b488b75909629c68949ba693004afd6a.tar.bz2
openshift-413fe019b488b75909629c68949ba693004afd6a.tar.xz
openshift-413fe019b488b75909629c68949ba693004afd6a.zip
Merge pull request #6005 from mgugino-upstream-stage/fix-master-version-detect
Automatic merge from submit-queue. Fix master upgrade version detect and systemd enable Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1508755 Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1509158
Diffstat (limited to 'roles/openshift_facts/library')
-rwxr-xr-xroles/openshift_facts/library/openshift_facts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py
index 33028fea4..a88945538 100755
--- a/roles/openshift_facts/library/openshift_facts.py
+++ b/roles/openshift_facts/library/openshift_facts.py
@@ -1289,7 +1289,7 @@ def get_container_openshift_version(facts):
If containerized, see if we can determine the installed version via the
systemd environment files.
"""
- for filename in ['/etc/sysconfig/%s-master', '/etc/sysconfig/%s-node']:
+ for filename in ['/etc/sysconfig/%s-master-controllers', '/etc/sysconfig/%s-node']:
env_path = filename % facts['common']['service_type']
if not os.path.exists(env_path):
continue