Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update panos.pm.in #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions lib/panos.pm.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ sub import {
sub init {

# add content lines and separators
ProcessHistory("","","","!RANCID-CONTENT-TYPE: $devtype\n!\n");
ProcessHistory("","","","#RANCID-CONTENT-TYPE: $devtype\n\n");

0;
}
Expand Down Expand Up @@ -103,17 +103,18 @@ TOP: while(<$INPUT>) {
# This routine parses "show system info"
sub ShowInfo {
my($INPUT, $OUTPUT, $cmd) = @_;
my($slot);

print STDERR " In ShowInfo:: $_" if ($debug);

while (<$INPUT>) {
tr/\015//d;
last if (/^$prompt/);
chomp;
s/\s+$//; # remove tailing whitespaces
next if (/^(time:|uptime:)/);
next if (/^(app|av|global-protect-datafile|threat|wf-private|wildfire|url-filtering)-(version|release-date):/);

ProcessHistory("INFO","","","#$_");
ProcessHistory("INFO","","","#$_\n");
}
ProcessHistory("INFO","","","#\n");
return(0);
Expand Down