From 240c0ae65040df01192f9168e79fa67cb361fab5 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 6 Dec 2016 08:37:08 -0800 Subject: Add metadata for xbps Pass pyflakes --- packaging/os/xbps.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packaging/os/xbps.py b/packaging/os/xbps.py index ad3a90b9..0bfe678a 100644 --- a/packaging/os/xbps.py +++ b/packaging/os/xbps.py @@ -19,6 +19,10 @@ # along with Ansible. If not, see . # +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() -- cgit v1.2.1