blob: bbad777d65c1d72d4f932d0a73dcd53323e2f3a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class OpnSense < Oxidized::Model
# minimum required permissions: "System: Shell account access"
# must enable SSH and password-based SSH access
cmd :all do |cfg|
cfg.cut_head
end
cmd 'cat /conf/config.xml' do |cfg|
cfg.gsub! /\s<revision>\s*<time>\d*<\/time>\s*.*\s*.*\s*<\/revision>/, ''
cfg.gsub! /\s<last_rule_upd_time>\d*<\/last_rule_upd_time>/, ''
cfg
end
cfg :ssh do
exec true
pre_logout 'exit'
end
end
|