diff options
author | Angelo Naselli <anaselli@linux.it> | 2014-05-24 18:36:39 +0200 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2014-05-24 18:36:39 +0200 |
commit | 01f6e5ec956abe7f3884755dd68b14f2da46af43 (patch) | |
tree | 6bbff9e28ce609f2526daa13606a02182aa9b60b | |
parent | 26be62e8f2d15ca1c0088613d1daba314a75ea77 (diff) | |
parent | 5cb593cba82eca852618027a3d876e4b9aad8b8c (diff) | |
download | colin-keep-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar colin-keep-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar.gz colin-keep-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar.bz2 colin-keep-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar.xz colin-keep-01f6e5ec956abe7f3884755dd68b14f2da46af43.zip |
Merge branch 'master' of ssh://git.mageia.org/software/adminpanel
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | lib/AdminPanel/Module/Hosts.pm | 2 | ||||
-rwxr-xr-x | scripts/hostmanager | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.PL b/Makefile.PL index ffbfea8..20c6efc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -34,6 +34,8 @@ WriteMakefile( "File::HomeDir" => 0, "File::ShareDir" => 0, "Data::Password::Meter" => 0, + "Modern::Perl" => 1.03, + "autodie" => 2.20, }, EXE_FILES => [ qw( scripts/adminMouse scripts/adminService diff --git a/lib/AdminPanel/Module/Hosts.pm b/lib/AdminPanel/Module/Hosts.pm index dbda87f..a509b43 100644 --- a/lib/AdminPanel/Module/Hosts.pm +++ b/lib/AdminPanel/Module/Hosts.pm @@ -20,7 +20,7 @@ package AdminPanel::Module::Hosts; -use Modern::Perl 2011; +use Modern::Perl '2011'; use autodie; use Moose; use POSIX qw(ceil); diff --git a/scripts/hostmanager b/scripts/hostmanager index 006f5ef..3852b17 100755 --- a/scripts/hostmanager +++ b/scripts/hostmanager @@ -1,7 +1,7 @@ #!/usr/bin/perl # Copyright 2013 Matteo Pasotti # -# This file is part of hostmanager +# This file is part of hostmanager thus adminpanel # # hostmanager is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # # You should have received a copy of the GNU General Public License # along with AdminPanel. If not, see <http://www.gnu.org/licenses/>. -use Modern::Perl 2011; +use Modern::Perl '2011'; use autodie; use AdminPanel::Module::Hosts; |