Sha256: 14a457766aa8b8636b28c31700ff53802f29c33ecb81398de5cced121cba6575
Contents?: true
Size: 1.4 KB
Versions: 3
Compression:
Stored size: 1.4 KB
Contents
# frozen_string_literal: true module Facter class Options class << self def cli? OptionStore.cli end def get OptionStore.all end def [](key) OptionStore.send(key.to_sym) end def []=(key, value) OptionStore.send("#{key}=".to_sym, value) end def custom_dir? OptionStore.custom_dir && OptionStore.custom_facts end def custom_dir OptionStore.custom_dir.flatten end def external_dir? OptionStore.external_dir && OptionStore.external_facts end def external_dir OptionStore.external_dir end def init OptionStore.cli = false ConfigFileOptions.init store(ConfigFileOptions.get) end def init_from_cli(cli_options = {}, user_query = nil) Facter::OptionStore.cli = true Facter::OptionStore.show_legacy = false Facter::OptionStore.user_query = user_query OptionStore.set(:config, cli_options[:config]) ConfigFileOptions.init(cli_options[:config]) store(ConfigFileOptions.get) store(cli_options) Facter::OptionsValidator.validate_configs(get) end def store(options) options.each do |key, value| value = '' if key == 'log_level' && value == 'log_level' OptionStore.set(key, value) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
facter-4.0.18 | lib/framework/core/options.rb |
facter-4.0.17 | lib/framework/core/options.rb |
facter-4.0.16 | lib/framework/core/options.rb |