Add metadata for xbps

Pass pyflakes
pull/18777/head
Toshio Kuratomi 8 years ago committed by Matt Clay
parent d2fc24b771
commit 2cfa25c930

@ -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()

Loading…
Cancel
Save