Initial release.

This commit is contained in:
Michael Hierweck
2016-03-25 20:03:38 +01:00
commit fcd3c33ed8
12 changed files with 533 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
Introduction
============
This package provides a generic interface between Ansible and the Hostsharing HSAdmin API package.
Example
-------
Please note that the ids argument will be removed from the Module class constructor
as soon as this information is provided by the backends theirselves.
In real world uses the argsfile will be populated by Ansible.
>>> from hs.admin.play import Module
>>>
>>> module = Module(module='emailaddress',
... ids=['localpart', 'subdomain', 'domain'],
... argsfile='/tmp/argsfile')
>>>
>>> module()