Adding the --sudo flag for CPANM use since the sudo: yes on the task doesn't work
This commit is contained in:
parent
86be6b1dba
commit
07a4ab2fc5
1 changed files with 14 additions and 0 deletions
|
@ -64,6 +64,12 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
|
use_sudo:
|
||||||
|
description:
|
||||||
|
- Use sudo flag for cpanm
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
|
version_added: "2.0"
|
||||||
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 (@franckcuny)"
|
author: "Franck Cuny (@franckcuny)"
|
||||||
|
@ -87,6 +93,9 @@ EXAMPLES = '''
|
||||||
|
|
||||||
# install Dancer perl package from a specific mirror
|
# install Dancer perl package from a specific mirror
|
||||||
- cpanm: name=Dancer mirror=http://cpan.cpantesters.org/
|
- cpanm: name=Dancer mirror=http://cpan.cpantesters.org/
|
||||||
|
|
||||||
|
# install Dancer perl package using --sudo flag
|
||||||
|
- cpanm: name=Dancer use_sudo=yes
|
||||||
'''
|
'''
|
||||||
|
|
||||||
def _is_package_installed(module, name, locallib, cpanm):
|
def _is_package_installed(module, name, locallib, cpanm):
|
||||||
|
@ -124,6 +133,9 @@ def _build_cmd_line(name, from_path, notest, locallib, mirror, mirror_only,
|
||||||
if installdeps is True:
|
if installdeps is True:
|
||||||
cmd = "{cmd} --installdeps".format(cmd=cmd)
|
cmd = "{cmd} --installdeps".format(cmd=cmd)
|
||||||
|
|
||||||
|
if use_sudo is True:
|
||||||
|
cmd = "{cmd} --sudo".format(cmd=cmd)
|
||||||
|
|
||||||
return cmd
|
return cmd
|
||||||
|
|
||||||
|
|
||||||
|
@ -136,6 +148,7 @@ def main():
|
||||||
mirror=dict(default=None, required=False),
|
mirror=dict(default=None, required=False),
|
||||||
mirror_only=dict(default=False, type='bool'),
|
mirror_only=dict(default=False, type='bool'),
|
||||||
installdeps=dict(default=False, type='bool'),
|
installdeps=dict(default=False, type='bool'),
|
||||||
|
use_sudo=dict(default=False, type='bool'),
|
||||||
)
|
)
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
|
@ -151,6 +164,7 @@ def main():
|
||||||
mirror = module.params['mirror']
|
mirror = module.params['mirror']
|
||||||
mirror_only = module.params['mirror_only']
|
mirror_only = module.params['mirror_only']
|
||||||
installdeps = module.params['installdeps']
|
installdeps = module.params['installdeps']
|
||||||
|
use_sudo = module.params['use_sudo']
|
||||||
|
|
||||||
changed = False
|
changed = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue