blob: f7746c8f4f10485cc7e59bdbe5b7507c4baa5660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class RouterOS < Oxidized::Model
prompt /\[\w+@\S+\]\s?>\s?$/
comment "# "
cmd '/system routerboard print' do |cfg|
comment cfg
end
cmd '/export' do |cfg|
cfg.gsub! /\x1B\[([0-9]{1,3}((;[0-9]{1,3})*)?)?[m|K]/, '' # strip ANSI colours
cfg = cfg.split("\n").select { |line| not line[/^\#\s\w{3}\/\d{2}\/\d{4}.*$/] }
cfg.join("\n") + "\n"
end
cfg :telnet do
username /^Login:/
password /^Password:/
end
cfg :ssh do
exec true unless vars :ssh_no_exec
end
end
|