aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-05-24 18:36:39 +0200
committerAngelo Naselli <anaselli@linux.it>2014-05-24 18:36:39 +0200
commit01f6e5ec956abe7f3884755dd68b14f2da46af43 (patch)
tree6bbff9e28ce609f2526daa13606a02182aa9b60b
parent26be62e8f2d15ca1c0088613d1daba314a75ea77 (diff)
parent5cb593cba82eca852618027a3d876e4b9aad8b8c (diff)
downloadmanatools-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar
manatools-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar.gz
manatools-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar.bz2
manatools-01f6e5ec956abe7f3884755dd68b14f2da46af43.tar.xz
manatools-01f6e5ec956abe7f3884755dd68b14f2da46af43.zip
Merge branch 'master' of ssh://git.mageia.org/software/adminpanel
-rw-r--r--Makefile.PL2
-rw-r--r--lib/AdminPanel/Module/Hosts.pm2
-rwxr-xr-xscripts/hostmanager4
3 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.PL b/Makefile.PL
index ffbfea8c..20c6efc0 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 dbda87fb..a509b437 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 006f5efd..3852b17f 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;