Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
111
Issues
111
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
85796ad8
Commit
85796ad8
authored
Feb 19, 2016
by
Leigh Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change a use to a require.
parent
2d441caa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
protogeni/lib/GeniAuthority.pm.in
protogeni/lib/GeniAuthority.pm.in
+4
-3
No files found.
protogeni/lib/GeniAuthority.pm.in
View file @
85796ad8
#
!/usr/bin/perl -wT
#
#
Copyright
(
c
)
2008
-
201
5
University
of
Utah
and
the
Flux
Group
.
#
Copyright
(
c
)
2008
-
201
6
University
of
Utah
and
the
Flux
Group
.
#
#
{{{
GENIPUBLIC
-
LICENSE
#
...
...
@@ -41,14 +41,13 @@ use vars qw(@ISA @EXPORT);
#
Must
come
after
package
declaration
!
use
GeniDB
;
use
GeniRegistry
;
use
GeniHRN
;
use
Genixmlrpc
;
use
GeniResponse
;
use
GeniCertificate
;
use
emutil
qw
(
TBGetUniqueIndex
);
use
English
;
use
overload
(
'""'
=>
'Stringify'
);
use
XML
::
Simple
;
use
Date
::
Parse
;
use
Data
::
Dumper
;
...
...
@@ -355,6 +354,7 @@ sub CheckExisting($$)
sub CreateFromRegistry($$$)
{
my ($class, $type, $name) = @_;
require GeniRegistry;
my $authority = GeniAuthority->Lookup($name);
if (defined($authority)) {
...
...
@@ -613,6 +613,7 @@ sub UpdateCertificate($$)
sub Resolve($$)
{
my ($self, $urn) = @_;
require GeniRegistry;
my $manager_version = $self->Version();
return undef
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment