Compare commits

..

No commits in common. "551223fcf3ae100ac54b1ce22bc5fa1c09d8e5a4" and "da8b4402251b9bd313bf2a1c324250025d87c0b5" have entirely different histories.

3 changed files with 2 additions and 3 deletions

View file

@ -1,7 +1,7 @@
---
namespace: happydns
name: happydomain
version: 0.3.1
version: 0.3.0
readme: README.md
authors:
- happyDomain Team <happydomain.org>

View file

@ -48,7 +48,6 @@ def main():
for s in providers:
if s._srctype == p['type'] and s._comment == p['name']:
s = a.provider_get(s._id)
found = True
if p['state'] == 'absent':

View file

@ -18,7 +18,7 @@ def main():
state=dict(type='str', default='present', choices=['absent', 'present']),
username=dict(type='str', aliases=['name', 'email', 'happydomain_username']),
password=dict(type='str', aliases=['passwd', 'happydomain_password'], no_log=True),
allowcommercials=dict(type='bool', default=False),
allowcommercials=dict(type='bool'),
email_verified=dict(type='bool', default=True),
socket=dict(type='path', default='/var/lib/happydomain/happydomain.sock'),
)