Changeset 18457
- Timestamp:
- Jul 9, 2008, 4:40:33 PM (18 years ago)
- Location:
- trunk/Nebulous-Server
- Files:
-
- 3 edited
-
Changes (modified) (1 diff)
-
bin/neb-admin (modified) (4 diffs)
-
lib/Nebulous/Server.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous-Server/Changes
r18451 r18457 1 1 Revision history for Nebulous 2 2 3 0.13 3 0.13 Wed Jul 9 16:36:27 HST 2008 4 4 - create a Nebulous::Keys object to represent a parsed neb key and 5 5 impliment other changes to abstract out the handling of keys in order to -
trunk/Nebulous-Server/bin/neb-admin
r18407 r18457 3 3 # Copyright (C) 2005-2008 Joshua Hoblitt 4 4 # 5 # $Id: neb-admin,v 1. 7 2008-07-02 23:20:38jhoblitt Exp $5 # $Id: neb-admin,v 1.8 2008-07-10 02:40:33 jhoblitt Exp $ 6 6 7 7 use strict; … … 19 19 use Pod::Usage qw( pod2usage ); 20 20 21 my ($db, $dbhost, $dbuser, $dbpass, $pending, $limit );21 my ($db, $dbhost, $dbuser, $dbpass, $pending, $limit, $verbose); 22 22 23 23 $db = $ENV{'NEB_DB'}; … … 33 33 'pendingreplicate|r' => \$pending, 34 34 'limit|l=i' => \$limit, 35 'verbose|v' => \$verbose, 35 36 ) || pod2usage( 2 ); 36 37 … … 76 77 77 78 foreach my $obj (@rows) { 78 # use Data::Dumper; 79 # print Dumper($obj); 79 if (defined $verbose) { 80 require Data::Dumper; 81 print Data::Dumper::Dumper($obj); 82 } 83 80 84 my $so_id = $obj->{so_id}; 81 85 my $key = $obj->{ext_id}; -
trunk/Nebulous-Server/lib/Nebulous/Server.pm
r18451 r18457 1 1 # Copyright (c) 2004-2008 Joshua Hoblitt 2 2 # 3 # $Id: Server.pm,v 1.8 0 2008-07-09 23:32:35jhoblitt Exp $3 # $Id: Server.pm,v 1.81 2008-07-10 02:40:33 jhoblitt Exp $ 4 4 5 5 package Nebulous::Server; … … 9 9 no warnings qw( uninitialized ); 10 10 11 our $VERSION = '0.1 2';11 our $VERSION = '0.13'; 12 12 13 13 use base qw( Class::Accessor::Fast );
Note:
See TracChangeset
for help on using the changeset viewer.
