Changeset 660 for trunk/cgi-bin
- Timestamp:
- 12/29/14 17:46:43 (10 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/stable (added) merged: 600
- Property svn:mergeinfo changed
-
trunk/cgi-bin/IPDB.pm
r655 r660 25 25 @EXPORT_OK = qw( 26 26 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist 27 %IPDBacl %aclmsg $errstr 27 %IPDBacl %aclmsg %rpcacl 28 $errstr 28 29 &initIPDBGlobals &connectDB &finish &checkDBSanity 29 30 &addMaster &touchMaster … … 39 40 %EXPORT_TAGS = ( ALL => [qw( 40 41 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist 41 %IPDBacl %aclmsg $errstr 42 %IPDBacl %aclmsg %rpcacl 43 $errstr 42 44 &initIPDBGlobals &connectDB &finish &checkDBSanity 43 45 &addMaster &touchMaster … … 68 70 delblock => 'delete an allocation', 69 71 ); 72 73 our %rpcacl; 70 74 71 75 # error reporting -
trunk/cgi-bin/MyIPDB.pm
r659 r660 23 23 my $dbhost = 'localhost'; 24 24 25 # Quick workaround for fixed web path. Set this to the absolute web path to 26 # your IPDB install, or leave blank for installation at the webroot. 27 $IPDB::webpath = ''; 25 # ACL for RPC shim. A hash of arrays; the hash keys are the remote system 26 # names, the array contents are the IPs allowed to claim that system name. 27 #%IPDB::rpcacl = ( 28 # cli_test => ['192.168.99.115','209.91.179.62'], 29 # devel => ['10.0.10.5'], 30 # ); 31 32 # Quick workaround for fixed web path. Set this to the absolute web path to 33 # your IPDB install, or leave blank for installation at the webroot. 34 $IPDB::webpath = ''; 28 35 29 36 # Set some globals declared in IPDB.pm. Most of these only affect mailNotify().
Note:
See TracChangeset
for help on using the changeset viewer.