puppet: Remove module perl

No longer in use.

refs #6842
This commit is contained in:
Eric Lippmann 2014-12-15 12:16:36 +01:00
parent e1c35c457d
commit 00d3110b95
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
# Class: perl
#
# This class installs perl.
#
# Sample Usage:
#
# include perl
#
class perl {
$perl = 'perl-5.20.0'
$perlDir = '/opt/perl'
cmmi { $perl:
url => "http://www.cpan.org/src/5.0/${perl}.tar.gz",
output => "${perl}.tar.gz",
creates => $perlDir,
configure_command => 'sh ./Configure',
flags => "-des -Dprefix=${perlDir}",
} -> file { '/usr/local/bin/perl':
ensure => link,
target => "${perlDir}/bin/perl",
}
}