Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Ravada-Mirror
Commits
bf19bdd5
Commit
bf19bdd5
authored
Mar 22, 2017
by
Francesc Guasch
Browse files
[#134] Fixed whatis and pod errors
parent
99d6a1f5
Changes
15
Hide whitespace changes
Inline
Side-by-side
lib/Ravada/Auth.pm
View file @
bf19bdd5
...
...
@@ -7,6 +7,12 @@ our $LDAP;
use
Ravada::Auth::
SQL
;
=head1 NAME
Ravada::Auth - Authentication library for Ravada users
=cut
eval
{
require
Ravada::Auth::
LDAP
;
};
...
...
lib/Ravada/Auth/LDAP.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Auth::LDAP;
use
strict
;
use
warnings
;
=head1 NAME
Ravada::Auth::LDAP - LDAP library for Ravada
=cut
use
Authen::
Passphrase
;
use
Authen::Passphrase::
SaltedDigest
;
use
Carp
qw(carp)
;
...
...
lib/Ravada/Auth/SQL.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Auth::SQL;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::Auth::SQL - SQL authentication library for Ravada
=cut
use
Carp
qw(carp)
;
use
Ravada
;
...
...
lib/Ravada/Auth/User.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Auth::User;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::Auth::User - User management and tools library for Ravada
=cut
use
Carp
qw(confess croak)
;
use
Data::
Dumper
;
use
Moose::
Role
;
...
...
lib/Ravada/Domain.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Domain;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::Domain - Domains ( Virtual Machines ) library for Ravada
=cut
use
Carp
qw(carp confess croak cluck)
;
use
Data::
Dumper
;
use
Hash::
Util
qw(lock_hash)
;
...
...
lib/Ravada/Domain/KVM.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Domain::KVM;
use
warnings
;
use
strict
;
=head2 NAME
Ravada::Domain::KVM - KVM Virtual Machines library for Ravada
=cut
use
Carp
qw(cluck confess croak)
;
use
Data::
Dumper
;
use
File::
Copy
;
...
...
lib/Ravada/Domain/LXC.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Domain::LXC;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::Domain::LXC - LXC containers library for Ravada
=cut
use
Carp
qw(cluck croak)
;
use
Data::
Dumper
;
use
IPC::
Run3
qw(run3)
;
...
...
lib/Ravada/Front.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Front;
use
strict
;
use
warnings
;
=head1 NAME
Ravada::Front - Web Frontend library for Ravada
=cut
use
Carp
qw(carp)
;
use
Hash::
Util
qw(lock_hash)
;
use
JSON::
XS
;
...
...
@@ -593,6 +599,7 @@ Request to start a domain.
=item remote_ip => $remote_ip: a Ravada::Auth::SQL user
=back
Returns an object: Ravada::Request.
...
...
lib/Ravada/NetInterface/KVM.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::NetInterface::KVM;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::NetInterface::KVM - KVM network interface management API for Ravada
=cut
use
Carp
qw(cluck confess croak)
;
use
Data::
Dumper
;
use
Hash::
Util
qw(lock_keys)
;
...
...
lib/Ravada/NetInterface/MacVTap.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::NetInterface::MacVTap;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::NetInterface::MacVTap - MacVTAP network library for Ravada
=cut
use
Carp
qw(cluck confess croak)
;
use
Data::
Dumper
;
use
Hash::
Util
qw(lock_keys)
;
...
...
lib/Ravada/Network.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Network;
use
strict
;
use
warnings
;
=head1 NAME
Ravada::Network - Networks management library for Ravada
=cut
use
Hash::
Util
qw(lock_hash)
;
use
Moose
;
use
MooseX::Types::NetAddr::
IP
qw( NetAddrIP )
;
...
...
lib/Ravada/Request.pm
View file @
bf19bdd5
...
...
@@ -3,6 +3,12 @@ package Ravada::Request;
use
strict
;
use
warnings
;
=head1 NAME
Ravada::Request - Requests library for Ravada
=cut
use
Carp
qw(confess)
;
use
Data::
Dumper
;
use
JSON::
XS
;
...
...
@@ -68,7 +74,7 @@ sub _init_connector {
Internal object builder, do not call
=
C
ut
=
c
ut
sub
BUILD
{
_init_connector
();
...
...
lib/Ravada/Utils.pm
View file @
bf19bdd5
package
Ravada::
Utils
;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::Utils - Misc util libraries for Ravada
=cut
=head2 now
Returns the current datetime
...
...
lib/Ravada/VM.pm
View file @
bf19bdd5
...
...
@@ -2,6 +2,11 @@ use warnings;
use
strict
;
package
Ravada::
VM
;
=head1 NAME
Ravada::VM - Virtual Managers library for Ravada
=cut
use
Carp
qw( carp croak)
;
use
Data::
Dumper
;
...
...
lib/Ravada/VM/KVM.pm
View file @
bf19bdd5
package
Ravada::VM::
KVM
;
use
warnings
;
use
strict
;
=head1 NAME
Ravada::VM::KVM - KVM Virtual Managers library for Ravada
=cut
use
Carp
qw(croak carp cluck)
;
use
Data::
Dumper
;
use
Digest::
MD5
;
...
...
Write
Preview
Supports
Markdown
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