parent
ada0b8c0a5
commit
e1c35c457d
|
@ -1,47 +0,0 @@
|
||||||
# Define: cpan
|
|
||||||
#
|
|
||||||
# Download and install Perl modules from the Perl Archive Network, the canonical location for Perl code and modules.
|
|
||||||
#
|
|
||||||
# Parameters:
|
|
||||||
# [*creates*] - target directory the software will install to.
|
|
||||||
# [*timeout* ] - timeout for the CPAN command.
|
|
||||||
#
|
|
||||||
# Actions:
|
|
||||||
#
|
|
||||||
# Requires:
|
|
||||||
#
|
|
||||||
# perl
|
|
||||||
#
|
|
||||||
# Sample Usage:
|
|
||||||
#
|
|
||||||
# cpan { 'perl-module':
|
|
||||||
# creates => '/usr/local/share/perl5/perl-module',
|
|
||||||
# timeout => 600
|
|
||||||
# }
|
|
||||||
#
|
|
||||||
define cpan(
|
|
||||||
$creates,
|
|
||||||
$timeout = 0
|
|
||||||
) {
|
|
||||||
include perl
|
|
||||||
|
|
||||||
file { [ '/root/.cpan/', '/root/.cpan/CPAN/' ]:
|
|
||||||
ensure => directory
|
|
||||||
}
|
|
||||||
|
|
||||||
file { '/root/.cpan/CPAN/MyConfig.pm':
|
|
||||||
content => template('cpan/MyConfig.pm.erb'),
|
|
||||||
require => File[[ '/root/.cpan/', '/root/.cpan/CPAN/' ]],
|
|
||||||
}
|
|
||||||
|
|
||||||
exec { "cpan-${name}":
|
|
||||||
command => "perl -MCPAN -e 'install ${name}'",
|
|
||||||
creates => $creates,
|
|
||||||
path => '/usr/local/bin:/usr/bin',
|
|
||||||
require => [
|
|
||||||
Class['perl'],
|
|
||||||
File['/root/.cpan/CPAN/MyConfig.pm']
|
|
||||||
],
|
|
||||||
timeout => $timeout
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,68 +0,0 @@
|
||||||
$CPAN::Config = {
|
|
||||||
'applypatch' => q[],
|
|
||||||
'auto_commit' => q[0],
|
|
||||||
'build_cache' => q[100],
|
|
||||||
'build_dir' => q[/root/.cpan/build],
|
|
||||||
'build_dir_reuse' => q[0],
|
|
||||||
'build_requires_install_policy' => q[ask/yes],
|
|
||||||
'bzip2' => q[/usr/bin/bzip2],
|
|
||||||
'cache_metadata' => q[1],
|
|
||||||
'check_sigs' => q[0],
|
|
||||||
'commandnumber_in_prompt' => q[1],
|
|
||||||
'connect_to_internet_ok' => q[1],
|
|
||||||
'cpan_home' => q[/root/.cpan],
|
|
||||||
'curl' => q[/usr/bin/curl],
|
|
||||||
'ftp' => q[],
|
|
||||||
'ftp_passive' => q[1],
|
|
||||||
'ftp_proxy' => q[],
|
|
||||||
'getcwd' => q[cwd],
|
|
||||||
'gpg' => q[/usr/bin/gpg],
|
|
||||||
'gzip' => q[/bin/gzip],
|
|
||||||
'halt_on_failure' => q[0],
|
|
||||||
'histfile' => q[/root/.cpan/histfile],
|
|
||||||
'histsize' => q[100],
|
|
||||||
'http_proxy' => q[],
|
|
||||||
'inactivity_timeout' => q[0],
|
|
||||||
'index_expire' => q[1],
|
|
||||||
'inhibit_startup_message' => q[0],
|
|
||||||
'keep_source_where' => q[/root/.cpan/sources],
|
|
||||||
'load_module_verbosity' => q[v],
|
|
||||||
'lynx' => q[],
|
|
||||||
'make' => q[/usr/bin/make],
|
|
||||||
'make_arg' => q[],
|
|
||||||
'make_install_arg' => q[],
|
|
||||||
'make_install_make_command' => q[/usr/bin/make],
|
|
||||||
'makepl_arg' => q[INSTALLDIRS=site],
|
|
||||||
'mbuild_arg' => q[],
|
|
||||||
'mbuild_install_arg' => q[],
|
|
||||||
'mbuild_install_build_command' => q[./Build],
|
|
||||||
'mbuildpl_arg' => q[--installdirs site],
|
|
||||||
'ncftp' => q[],
|
|
||||||
'ncftpget' => q[],
|
|
||||||
'no_proxy' => q[],
|
|
||||||
'pager' => q[/usr/bin/less],
|
|
||||||
'patch' => q[],
|
|
||||||
'perl5lib_verbosity' => q[v],
|
|
||||||
'prefer_installer' => q[MB],
|
|
||||||
'prefs_dir' => q[/root/.cpan/prefs],
|
|
||||||
'prerequisites_policy' => q[follow],
|
|
||||||
'scan_cache' => q[atstart],
|
|
||||||
'shell' => q[/bin/bash],
|
|
||||||
'show_unparsable_versions' => q[0],
|
|
||||||
'show_upload_date' => q[0],
|
|
||||||
'show_zero_versions' => q[0],
|
|
||||||
'tar' => q[/bin/tar],
|
|
||||||
'tar_verbosity' => q[v],
|
|
||||||
'term_is_latin' => q[1],
|
|
||||||
'term_ornaments' => q[1],
|
|
||||||
'test_report' => q[0],
|
|
||||||
'trust_test_report_history' => q[0],
|
|
||||||
'unzip' => q[/usr/bin/unzip],
|
|
||||||
'urllist' => [],
|
|
||||||
'use_sqlite' => q[0],
|
|
||||||
'wget' => q[/usr/bin/wget],
|
|
||||||
'yaml_load_code' => q[0],
|
|
||||||
'yaml_module' => q[YAML],
|
|
||||||
};
|
|
||||||
1;
|
|
||||||
__END__
|
|
Loading…
Reference in New Issue