Added ignore_arch option for makepkg

This commit is contained in:
neilmunday
2020-04-13 00:05:35 +01:00
parent d6d25c6738
commit bd374b15d9

View File

@@ -25,6 +25,13 @@ options:
description:
- Name or list of names of the package(s) to install or upgrade.
ignore_arch:
description:
- Set to yes to skip architecture check.
Only valid with makepkg.
type: bool
default: no
upgrade:
description:
- Whether or not to upgrade whole system.
@@ -145,6 +152,8 @@ def install_with_makepkg(module, package):
os.chdir(format(result['Name']))
if module.params['skip_pgp_check']:
use_cmd['makepkg'].append('--skippgpcheck')
if module.params['ignore_arch']:
use_cmd['makepkg'].append('-A')
rc, out, err = module.run_command(use_cmd['makepkg'], check_rc=True)
os.chdir(current_path)
return (rc, out, err)
@@ -201,6 +210,10 @@ def main():
'name': {
'type': 'list',
},
'ignore_arch' : {
'default': False,
'type': 'bool',
},
'upgrade': {
'default': False,
'type': 'bool',