ansible -> ansibleworks

pull/5809/head
Michael DeHaan 11 years ago
parent 81e9a60589
commit 83f43b82ad

@ -83,7 +83,7 @@ options:
requirements: [ "boto 2.9+" ] requirements: [ "boto 2.9+" ]
author: benno@ansibleworks.com Note. Most of the code has been taken from the S3 module. author: benno@ansible.com Note. Most of the code has been taken from the S3 module.
''' '''

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# (c) 2013, John Dewey <john@dewey.ws> # (c) 2013, John Dewey <john@dewey.ws>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# (c) 2013, John Dewey <john@dewey.ws> # (c) 2013, John Dewey <john@dewey.ws>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
#coding: utf-8 -*- #coding: utf-8 -*-
# (c) 2013, Benno Joy <benno@ansibleworks.com> # (c) 2013, Benno Joy <benno@ansible.com>
# #
# This module is free software: you can redistribute it and/or modify # This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

@ -41,7 +41,7 @@ options:
choices: [ "status", "cleanup" ] choices: [ "status", "cleanup" ]
default: "status" default: "status"
notes: notes:
- See also U(http://www.ansibleworks.com/docs/playbooks_async.html#asynchronous-actions-and-polling) - See also U(http://docs.ansible.com/playbooks_async.html)
requirements: [] requirements: []
author: Michael DeHaan author: Michael DeHaan
''' '''

@ -36,7 +36,7 @@ description:
the target host, requests will be sent through that proxy. This the target host, requests will be sent through that proxy. This
behaviour can be overridden by setting a variable for this task behaviour can be overridden by setting a variable for this task
(see `setting the environment (see `setting the environment
<http://www.ansibleworks.com/docs/playbooks_environment.html#setting-the-environment-and-working-with-proxies>`_), <http://docs.ansible.com/playbooks_environment.html>`_),
or by using the use_proxy option. or by using the use_proxy option.
version_added: "0.6" version_added: "0.6"
options: options:

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, Michael DeHaan <michael@ansibleworks.com> # (c) 2013, Michael DeHaan <michael@ansible.com>
# #
# This file is part of Ansible # This file is part of Ansible
# #

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, James Cammarata <jcammarata@ansibleworks.com> # (c) 2013, James Cammarata <jcammarata@ansible.com>
# #
# This file is part of Ansible # This file is part of Ansible
# #

Loading…
Cancel
Save