in reply to Re: How to by-pass self-signed certificate warning
in thread How to by-pass self-signed certificate warning
#!/usr/bin/perl -w use strict; use Algorithm::Diff qw(diff); use File::Copy; use LWP::Simple; #Global variable declaration (if any used) my ($addprinter, $zebra, $file1, $file2, $diffs, $date, $subject, $add +ress, @f1, @f2); #Printer script paths $addprinter = "/cachesys41/scripts/addprinter.plx"; $zebra = "/cachesys41/scripts/zebra.plx"; #Must chomp date or regexp substitution returns wrong value chomp ($date = `date`); $date =~ (s/ \d\d:\d\d:\d\d CDT//); #Get printers from CUPS (LWP / 'getstore()' method) my $rc = getstore ("http://my.fqdn.com/txt", "/tmp/txt"); die "error $rc";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to by-pass self-signed certificate warning
by Anonymous Monk on Mar 23, 2010 at 20:59 UTC | |
by skaguy (Initiate) on Mar 25, 2010 at 13:33 UTC | |
by Corion (Patriarch) on Mar 25, 2010 at 13:34 UTC |