diff options
Diffstat (limited to 'lib/leap_cli/config')
-rw-r--r-- | lib/leap_cli/config/manager.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/leap_cli/config/manager.rb b/lib/leap_cli/config/manager.rb index 0d14541..1f81166 100644 --- a/lib/leap_cli/config/manager.rb +++ b/lib/leap_cli/config/manager.rb @@ -17,7 +17,7 @@ module LeapCli # # load .json configuration files # - def load + def load(options = {}) @provider_dir = Path.provider # load base @@ -47,6 +47,18 @@ module LeapCli @nodes[name] = apply_inheritance(node) end + # remove disabled nodes + unless options[:include_disabled] + @nodes.select! do |name, node| + if node.enabled + true + else + log 2, :skipping, "disabled node #{name}." + false + end + end + end + # validate validate_provider(@provider) end |