diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-06-21 13:19:15 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-06-21 13:19:15 +0000 |
commit | cffed9af2357770d09b68f6d4a53ccd5f45e560c (patch) | |
tree | da0c59a9335362a304b10d4ff4700498c382f6bd | |
parent | a4169635cc7883d89737040aa6845b193b23c32b (diff) | |
parent | 0ee0a9992d1e254d63f78d57fd77b0b9e292ffe9 (diff) |
Merge "Add fact to get the fqdn for a host in the different networks"
-rw-r--r-- | lib/facter/alt_fqdns.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/facter/alt_fqdns.rb b/lib/facter/alt_fqdns.rb new file mode 100644 index 0000000..24d6ef1 --- /dev/null +++ b/lib/facter/alt_fqdns.rb @@ -0,0 +1,33 @@ +# Copyright 2016 Red Hat, Inc. +# All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +[ + 'external', + 'internalapi', + 'storage', + 'storagemgmt', + 'tenant', + 'management', +].each do |network| + Facter.add('fqdn_' + network) do + setcode do + external_hostname_parts = [ + Facter.value(:hostname), + network, + Facter.value(:domain), + ].reject { |part| part.empty? } + external_hostname_parts.join(".") + end + end +end |