summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/pfsense.rb
blob: 9982d726a31ea328d0a7b8b5491ca665caaa85e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class PfSense < Oxidized::Model

  # use other use than 'admin' user, 'admin' user cannot get ssh/exec. See issue #535
  
  cmd :all do |cfg|
    cfg.each_line.to_a[1..-2].join
  end
  
  cmd 'cat /cf/conf/config.xml' do |cfg|
    cfg.gsub! /\s<revision>\s*<time>\d*<\/time>\s*.*\s*.*\s*<\/revision>/, ''
  end
  
  cfg :ssh do
    exec true
    pre_logout 'exit'
  end
 
end