diff options
author | Saku Ytti <saku@ytti.fi> | 2014-04-14 16:28:23 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2014-04-14 16:28:23 +0300 |
commit | 57a8f4bc04b4f87ad0d7028dcbf29b96d49eaffd (patch) | |
tree | 82567c791b0114e62fa3b978eb2bb95733d6488b /lib/oxidized/config/bootstrap.rb | |
parent | 1a1794b2b3ac99764852546c550fd7988f84c37b (diff) |
Use 'asetus' for configuration files
Main benefits
a) we get support for system wide configs
b) we don't use symbols in config file, they're confusing to
non-rubyist
Diffstat (limited to 'lib/oxidized/config/bootstrap.rb')
-rw-r--r-- | lib/oxidized/config/bootstrap.rb | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/oxidized/config/bootstrap.rb b/lib/oxidized/config/bootstrap.rb deleted file mode 100644 index 008d88a..0000000 --- a/lib/oxidized/config/bootstrap.rb +++ /dev/null @@ -1,33 +0,0 @@ -module Oxidized - require 'fileutils' - FileUtils.mkdir_p Config::Root - CFG.username = 'username' - CFG.password = 'password' - CFG.model = 'junos' - CFG.interval = 3600 - CFG.log = File.join Config::Root, 'log' - CFG.debug = false - CFG.threads = 30 - CFG.timeout = 30 - CFG.prompt = /^([\w.@-]+[#>]\s?)$/ - CFG.rest = '0.0.0.0:8888' - CFG.vars = { - #:enable => 'enablePW', - } - CFG.input = { - :default => 'ssh, telnet', - :ssh => { - :secure => false, - } - } - CFG.output = { - :default => 'git', - } - CFG.source = { - :default => 'csv', - } - CFG.model_map = { - 'cisco' => 'ios', - 'juniper' => 'junos', - } -end |