Add the mirror
option and verify if a package is already installed.
By default, the cpanm client will use a default mirror to download libraries, but it's possible for the end user to pass a different URL. Since ansible favorite idempotence when possible, we verify if the module is already installed before running the cpanm client. Another minor additional change, the `notest` option is now a boolean.
This commit is contained in:
parent
36d54d66fe
commit
77ec020696
1 changed files with 48 additions and 18 deletions
56
cpanm
56
cpanm
|
@ -25,6 +25,7 @@ module: cpanm
|
||||||
short_description: Manages Perl library dependencies.
|
short_description: Manages Perl library dependencies.
|
||||||
description:
|
description:
|
||||||
- Manage Perl library dependencies.
|
- Manage Perl library dependencies.
|
||||||
|
version_added: "1.0"
|
||||||
options:
|
options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
|
@ -46,6 +47,11 @@ options:
|
||||||
- Specify the install base to install modules
|
- Specify the install base to install modules
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
|
mirror:
|
||||||
|
description:
|
||||||
|
- Specifies the base URL for the CPAN mirror to use
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
examples:
|
examples:
|
||||||
- code: "cpanm: name=Dancer"
|
- code: "cpanm: name=Dancer"
|
||||||
description: Install I(Dancer) perl package.
|
description: Install I(Dancer) perl package.
|
||||||
|
@ -55,11 +61,41 @@ examples:
|
||||||
description: Install perl dependencies from local directory.
|
description: Install perl dependencies from local directory.
|
||||||
- code: "cpanm: name=Dancer notest=True locallib=/srv/webapps/my_app/extlib"
|
- code: "cpanm: name=Dancer notest=True locallib=/srv/webapps/my_app/extlib"
|
||||||
description: Install I(Dancer) perl package without running the unit tests in indicated I(locallib).
|
description: Install I(Dancer) perl package without running the unit tests in indicated I(locallib).
|
||||||
|
- code: "cpanm: name=Dancer mirror=http://cpan.cpantesters.org/"
|
||||||
|
description: Install I(Dancer) perl package from a specific mirror
|
||||||
notes:
|
notes:
|
||||||
- Please note that U(http://search.cpan.org/dist/App-cpanminus/bin/cpanm, cpanm) must be installed on the remote host.
|
- Please note that U(http://search.cpan.org/dist/App-cpanminus/bin/cpanm, cpanm) must be installed on the remote host.
|
||||||
author: Franck Cuny
|
author: Franck Cuny
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
def _is_package_installed(name, locallib, cpanm):
|
||||||
|
cmd = ""
|
||||||
|
if locallib:
|
||||||
|
cmd = "PERL5LIB={locallib}/lib/perl5".format(locallib=locallib)
|
||||||
|
cmd = "{cmd} perl -M{name} -e '1'".format(cmd=cmd, name=name)
|
||||||
|
res, stdout, stderr = _run(cmd)
|
||||||
|
installed = True if res == 0 else False
|
||||||
|
return installed
|
||||||
|
|
||||||
|
|
||||||
|
def _build_cmd_line(name, from_path, notest, locallib, mirror, cpanm):
|
||||||
|
if from_path:
|
||||||
|
cmd = "{cpanm} {path}".format(cpanm=cpanm, path=from_path)
|
||||||
|
else:
|
||||||
|
cmd = "{cpanm} {name}".format(cpanm=cpanm, name=name)
|
||||||
|
|
||||||
|
if notest is True:
|
||||||
|
cmd = "{cmd} -n".format(cmd=cmd)
|
||||||
|
|
||||||
|
if locallib is not None:
|
||||||
|
cmd = "{cmd} -l {locallib}".format(cmd=cmd, locallib=locallib)
|
||||||
|
|
||||||
|
if mirror is not None:
|
||||||
|
cmd = "{cmd} --mirror {mirror}".format(cmd=cmd, mirror=mirror)
|
||||||
|
|
||||||
|
return cmd
|
||||||
|
|
||||||
|
|
||||||
def _run(cmd):
|
def _run(cmd):
|
||||||
process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.PIPE, shell=True)
|
stderr=subprocess.PIPE, shell=True)
|
||||||
|
@ -71,8 +107,9 @@ def main():
|
||||||
arg_spec = dict(
|
arg_spec = dict(
|
||||||
name=dict(default=None, required=False),
|
name=dict(default=None, required=False),
|
||||||
from_path=dict(default=None, required=False),
|
from_path=dict(default=None, required=False),
|
||||||
notest=dict(default=False, required=False),
|
notest=dict(default=False, choices=BOOLEANS),
|
||||||
locallib=dict(default=None, required=False),
|
locallib=dict(default=None, required=False),
|
||||||
|
mirror=dict(default=None, required=False)
|
||||||
)
|
)
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
|
@ -84,23 +121,16 @@ def main():
|
||||||
|
|
||||||
name = module.params['name']
|
name = module.params['name']
|
||||||
from_path = module.params['from_path']
|
from_path = module.params['from_path']
|
||||||
notest = module.params['notest']
|
notest = module.boolean(module.params.get('notest', False))
|
||||||
locallib = module.params['locallib']
|
locallib = module.params['locallib']
|
||||||
|
|
||||||
changed = False
|
changed = False
|
||||||
out_cpanm = ''
|
|
||||||
err_cpanm = ''
|
|
||||||
|
|
||||||
if from_path:
|
installed = _is_package_installed(name, locallib, cpanm)
|
||||||
cmd = "{cpanm} {path}".format(cpanm=cpanm, path=from_path)
|
|
||||||
else:
|
|
||||||
cmd = "{cpanm} {name}".format(cpanm=cpanm, name=name)
|
|
||||||
|
|
||||||
if notest is True:
|
if not installed:
|
||||||
cmd = "{cmd} -n".format(cmd=cmd)
|
out_cpanm = err_cpanm = ''
|
||||||
|
cmd = _build_cmd_line(name, from_path, notest, locallib, mirror, cpanm)
|
||||||
if locallib is not None:
|
|
||||||
cmd = "{cmd} -l {locallib}".format(cmd=cmd, locallib=locallib)
|
|
||||||
|
|
||||||
rc_cpanm, out_cpanm, err_cpanm = _run(cmd)
|
rc_cpanm, out_cpanm, err_cpanm = _run(cmd)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue