diff options
Diffstat (limited to 'lib/oxidized/model')
| -rw-r--r-- | lib/oxidized/model/pfsense.rb | 13 | 
1 files changed, 2 insertions, 11 deletions
| diff --git a/lib/oxidized/model/pfsense.rb b/lib/oxidized/model/pfsense.rb index 8cb0118..9982d72 100644 --- a/lib/oxidized/model/pfsense.rb +++ b/lib/oxidized/model/pfsense.rb @@ -2,21 +2,12 @@ class PfSense < Oxidized::Model    # use other use than 'admin' user, 'admin' user cannot get ssh/exec. See issue #535 -  comment  '# ' -   -  #add a comment in the final conf -  def add_comment comment -    "\n###### #{comment} ######\n"  -  end -    cmd :all do |cfg|      cfg.each_line.to_a[1..-2].join    end -  #show the persistent configuration -  pre do -    cfg = add_comment 'Configuration' -    cfg += cmd 'cat /cf/conf/config.xml'     +  cmd 'cat /cf/conf/config.xml' do |cfg| +    cfg.gsub! /\s<revision>\s*<time>\d*<\/time>\s*.*\s*.*\s*<\/revision>/, ''    end    cfg :ssh do | 
