1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add metadata for xbps

Pass pyflakes
This commit is contained in:
Toshio Kuratomi 2016-12-06 08:37:08 -08:00 committed by Matt Clay
parent d2fc24b771
commit 2cfa25c930

View file

@ -19,6 +19,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
ANSIBLE_METADATA = {'status': ['preview'],
'supported_by': 'community',
'version': '1.0'}
DOCUMENTATION = '''
---
module: xbps
@ -94,6 +98,8 @@ packages:
import os
from ansible.module_utils.basic import AnsibleModule
def is_installed(xbps_output):
"""Returns package install state"""
@ -293,8 +299,5 @@ def main():
remove_packages(module, xbps_path, pkgs)
# import module snippets
from ansible.module_utils.basic import *
if __name__ == "__main__":
main()