mirror of
https://github.com/kewlfft/ansible-aur.git
synced 2025-12-19 10:18:55 +03:00
@@ -17,7 +17,7 @@ makepkg will be used if no helper was found or if it's specified explicitly.
|
|||||||
|name |no | | |Name or list of names of the package(s) to install or upgrade.|
|
|name |no | | |Name or list of names of the package(s) to install or upgrade.|
|
||||||
|upgrade |no |no |yes, no |Whether or not to upgrade whole system.|
|
|upgrade |no |no |yes, no |Whether or not to upgrade whole system.|
|
||||||
|use |no |auto |auto, aurman, pacaur, trizen, pikaur, yay, makepkg |The helper to use, 'auto' uses the first known helper found and makepkg as a fallback.|
|
|use |no |auto |auto, aurman, pacaur, trizen, pikaur, yay, makepkg |The helper to use, 'auto' uses the first known helper found and makepkg as a fallback.|
|
||||||
|skip_installed |no |no |yes, no |Skip operations if the package is present.|
|
|skip_installed |no |yes |yes, no |Skip operations if the package is present.|
|
||||||
|skip_pgp_check |no |no |yes, no |Skip verification of PGP signatures. This is useful when installing packages on a host without GnuPG (properly) configured. Only valid with makepkg.|
|
|skip_pgp_check |no |no |yes, no |Skip verification of PGP signatures. This is useful when installing packages on a host without GnuPG (properly) configured. Only valid with makepkg.|
|
||||||
|
|
||||||
### Note
|
### Note
|
||||||
|
|||||||
4
aur.py
4
aur.py
@@ -40,7 +40,7 @@ options:
|
|||||||
description:
|
description:
|
||||||
- Skip operations if the package is present.
|
- Skip operations if the package is present.
|
||||||
type: bool
|
type: bool
|
||||||
default: no
|
default: yes
|
||||||
|
|
||||||
skip_pgp_check:
|
skip_pgp_check:
|
||||||
description:
|
description:
|
||||||
@@ -206,7 +206,7 @@ def main():
|
|||||||
'choices': ['auto', 'aurman', 'pacaur', 'trizen', 'pikaur', 'yaourt', 'yay', 'makepkg'],
|
'choices': ['auto', 'aurman', 'pacaur', 'trizen', 'pikaur', 'yaourt', 'yay', 'makepkg'],
|
||||||
},
|
},
|
||||||
'skip_installed': {
|
'skip_installed': {
|
||||||
'default': False,
|
'default': True,
|
||||||
'type': 'bool',
|
'type': 'bool',
|
||||||
},
|
},
|
||||||
'skip_pgp_check': {
|
'skip_pgp_check': {
|
||||||
|
|||||||
Reference in New Issue
Block a user