diff --git a/lib/ansible/modules/web_infrastructure/rundeck_project.py b/lib/ansible/modules/web_infrastructure/rundeck_project.py index 46e059c0044..bff5ef537d0 100644 --- a/lib/ansible/modules/web_infrastructure/rundeck_project.py +++ b/lib/ansible/modules/web_infrastructure/rundeck_project.py @@ -21,7 +21,7 @@ # along with Ansible. If not, see . ANSIBLE_METADATA = {'metadata_version': '1.0', - 'status': ['stableinterface'], + 'status': ['preview'], 'supported_by': 'community'} DOCUMENTATION = ''' @@ -56,9 +56,8 @@ options: description: - Sets the token to authenticate against Rundeck API. required: True - - ''' + EXAMPLES = ''' - name: Create a rundeck project rundeck_project: @@ -188,5 +187,6 @@ def main(): elif module.params['state'] == 'absent': rundeck.remove_project() + if __name__ == '__main__': main()