diff options
author | Devan Goodwin <dgoodwin@redhat.com> | 2016-03-24 08:51:01 -0300 |
---|---|---|
committer | Devan Goodwin <dgoodwin@redhat.com> | 2016-03-24 09:07:34 -0300 |
commit | 67d4685ef8885ff3ee759f5a36d9c97ba2012c50 (patch) | |
tree | fbb95c94f6197681cb24279f2ca782d01c90f403 /utils/src | |
parent | b1479e0f4c2ded50fc68a435b6271a5acbec10e4 (diff) | |
download | openshift-67d4685ef8885ff3ee759f5a36d9c97ba2012c50.tar.gz openshift-67d4685ef8885ff3ee759f5a36d9c97ba2012c50.tar.bz2 openshift-67d4685ef8885ff3ee759f5a36d9c97ba2012c50.tar.xz openshift-67d4685ef8885ff3ee759f5a36d9c97ba2012c50.zip |
Write inventory to same directory as quick install config.
With the addition of a --gen-inventory flag and always displaying the location
of the inventory written to disk, we should write the hosts file to a more
prominent location rather than a hidden directory.
Diffstat (limited to 'utils/src')
-rw-r--r-- | utils/src/ooinstall/oo_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/src/ooinstall/oo_config.py b/utils/src/ooinstall/oo_config.py index c9498542f..0f1f5caf7 100644 --- a/utils/src/ooinstall/oo_config.py +++ b/utils/src/ooinstall/oo_config.py @@ -198,7 +198,7 @@ class OOConfig(object): self.settings['ansible_ssh_user'] = '' self.settings['ansible_inventory_path'] = \ - '{}/hosts'.format(self.settings['ansible_inventory_directory']) + '{}/hosts'.format(os.path.dirname(self.config_path)) # clean up any empty sets for setting in self.settings.keys(): |