Changeset 600 for branches/stable/cgi-bin
- Timestamp:
- 05/16/13 23:30:49 (12 years ago)
- Location:
- branches/stable/cgi-bin
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/cgi-bin/IPDB.pm
r598 r600 24 24 @EXPORT_OK = qw( 25 25 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist 26 %IPDBacl %aclmsg 26 %IPDBacl %aclmsg %rpcacl 27 27 &initIPDBGlobals &connectDB &finish &checkDBSanity 28 28 &addMaster &touchMaster … … 38 38 %EXPORT_TAGS = ( ALL => [qw( 39 39 %disp_alloctypes %list_alloctypes %def_custids @citylist @poplist 40 %IPDBacl %aclmsg 40 %IPDBacl %aclmsg %rpcacl 41 41 &initIPDBGlobals &connectDB &finish &checkDBSanity 42 42 &addMaster &touchMaster … … 67 67 delblock => 'delete an allocation', 68 68 ); 69 70 our %rpcacl; 69 71 70 72 our $org_name = 'Example Corp'; -
branches/stable/cgi-bin/MyIPDB.pm
r599 r600 22 22 # DB host is optional. 23 23 my $dbhost = 'ipdb-db'; 24 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 # ); 24 31 25 32 # Quick workaround for fixed web path. Set this to the absolute web path to
Note:
See TracChangeset
for help on using the changeset viewer.