summaryrefslogtreecommitdiff
path: root/lib/oxidized/config/bootstrap.rb
blob: 2991fa3cbb138ede251dae6c7458483133f693bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module Oxidized
  require 'fileutils'
  FileUtils.mkdir_p Config::Root
  CFG.username = 'username'
  CFG.password = 'password'
  CFG.model    = 'junos'
  CFG.interval = 30
  CFG.log      = File.join Config::Root, 'log'
  CFG.debug    = false
  CFG.threads  = 10
  CFG.timeout  = 5
  CFG.prompt   = /^([\w\.\-@]{3,30}[#>]\s?)$/ 
  CFG.rest     = 8888
  CFG.input    = {
    :default => 'ssh',
  }
  CFG.output    = {
    :default => 'git',
  }
  CFG.source   = {
    :default => 'csv',
  }
  CFG.model_map = {
    'cisco'   => 'ios',
    'juniper' => 'junos',
  }
  CFG.save
end