From 57a8f4bc04b4f87ad0d7028dcbf29b96d49eaffd Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Mon, 14 Apr 2014 16:28:23 +0300 Subject: 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 --- lib/oxidized/config/bootstrap.rb | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 lib/oxidized/config/bootstrap.rb (limited to 'lib/oxidized/config/bootstrap.rb') 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 -- cgit v1.2.1