Changeset 13297
- Timestamp:
- May 7, 2007, 11:03:10 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/PS-IPP-Config/lib/PS/IPP/Config.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/PS-IPP-Config/lib/PS/IPP/Config.pm
r13276 r13297 1 1 # Copyright (c) 2006 Paul Price, Joshua Hoblitt 2 2 # 3 # $Id: Config.pm,v 1.4 3 2007-05-05 02:52:28price Exp $3 # $Id: Config.pm,v 1.44 2007-05-07 21:03:10 price Exp $ 4 4 5 5 package PS::IPP::Config; … … 16 16 use Getopt::Long 2.35 qw( GetOptions :config gnu_getopt pass_through ); # Set pass_through so we don't kill @ARGV 17 17 use URI 1.35; 18 use Nebulous::Client 0.02;19 18 20 19 use base qw( Class::Accessor::Fast Exporter ); … … 219 218 { 220 219 my $self = shift; # Configuration object 220 221 eval { 222 require Nebulous::Client; 223 }; 224 if ($@) { 225 carp "Can't find Nebulous::Client."; 226 exit($PS_EXIT_PROG_ERROR); 227 } 221 228 222 229 return 1 if defined $self->{nebulous}; # Already started
Note:
See TracChangeset
for help on using the changeset viewer.
