Commit Graph

25749 Commits (00a4ec5e3b9953ef932977c61d06129c8283a91e)
 

Author SHA1 Message Date
Alan Loi a7732e23dd Docfixes - add version_added and default values. 8 years ago
tylerturk 4f665e71bd Fix documentation bug 8 years ago
Peter Mounce 08bf656309 Code-review
Swap state enabled/disabled -> enabled yes/no
8 years ago
Peter Mounce 8f74e4acdf no default, remove it 8 years ago
Peter Mounce e518672a75 version_added -> 2, remove empty aliases 8 years ago
Peter Mounce c2ba569bf4 caught out by syntax 8 years ago
Peter Mounce 2fc0cec990 correct variable name 8 years ago
Peter Mounce be2ca80c2b win_scheduled_task module for windows
Fledgling module to allow scheduled tasks to be managed.
At present, I only need enabled/disabled support. There's lots of scope for more features.
8 years ago
Rene Moser 03a6fc0c56 cloudstack: fix cs_instance hypervisor must be omitted if set on template/iso
Fix related to issue reported in PR GH-646
8 years ago
Rene Moser b1143abbcf cloudstack: make get_template_or_iso returning a dict for fix GH-646 8 years ago
Gerrit Germis 450186fe45 wait_interval default value did not match the documented value 8 years ago
Gerrit Germis c35e70953d specify int parameter types for wait_interval and wait_retries 8 years ago
Toshio Kuratomi 4078e0905c Fix up docs 8 years ago
Toshio Kuratomi 9aaf6ee05c These modules were added to version 2.0, not 1.9 8 years ago
Toshio Kuratomi 7415accaa4 Add version_added to the subtype parameter 8 years ago
Arnaud Dematte b653b2d0fe Update mail.py to allow html content
Adding parameter subtype to allow html based content. The default behavior of text/plain has been preserved.
8 years ago
Matt Martz d93da276ad Bump version_added to 2.0 8 years ago
Matt Martz 66ce556e92 Add missing __init__.py 8 years ago
Ash Wilson 23c79ed474 Eliminate redundant module argument checks. 8 years ago
Ash Wilson 6b753c5c71 Use required=True and choices=[]. 8 years ago
Ash Wilson 4b1bdf738e Correct version_added in the documentation. 8 years ago
Ash Wilson eac1565b22 Restore rax_mon_* modules. 8 years ago
jpic 4afb6b73c8 Define HAS_LXC even if import lxc doesn't fail.
This fixes::

    Traceback (most recent call last):
      File "/home/jpic/.ansible/tmp/ansible-tmp-1435080800.61-38257321141340/lxc_container", line 3353, in <module>
        main()
      File "/home/jpic/.ansible/tmp/ansible-tmp-1435080800.61-38257321141340/lxc_container", line 1712, in main
        if not HAS_LXC:
    NameError: global name 'HAS_LXC' is not defined
8 years ago
jpic 44d97d33e5 Fixed lxc option parsing.
This fixes::

    Traceback (most recent call last):
      File "/home/jpic/.ansible/tmp/ansible-tmp-1435080916.98-133068627776311/lxc_container", line 3355, in <module>
        main()
      File "/home/jpic/.ansible/tmp/ansible-tmp-1435080916.98-133068627776311/lxc_container", line 1724, in main
        lxc_manage.run()
      File "/home/jpic/.ansible/tmp/ansible-tmp-1435080916.98-133068627776311/lxc_container", line 1605, in run
        action()
      File "/home/jpic/.ansible/tmp/ansible-tmp-1435080916.98-133068627776311/lxc_container", line 1145, in _started
        self._config()
      File "/home/jpic/.ansible/tmp/ansible-tmp-1435080916.98-133068627776311/lxc_container", line 714, in _config
        _, _value = option_line.split('=')
    ValueError: too many values to unpack

With such a task::

    tasks:
    - lxc_container:
        name: buildbot-master
        container_config:
        - "lxc.mount.entry = {{ cwd }} srv/peopletest none defaults,bind,uid=0,create=dir 0 0"
8 years ago
Alan Loi e05ade9806 Fix aws connection to use params. 8 years ago
Alan Loi a6b6cfe2dd Add .py file extension to dynamodb_table module. 8 years ago
Alan Loi abf03f6376 Added return value documentation to dynamodb_table module. 8 years ago
Alan Loi 1bea9a25bb Added check_mode support to dynamodb_table module. 8 years ago
Alan Loi e93aec0b3a Add dynamodb_table module 8 years ago
Andrew Udvare acd4822d52 Fix comparison 8 years ago
Andrew Udvare c21ced350d --usepkgonly does not imply --getbinpkg
Add usepkg option to allow conditional building from source if binary
packages are not found

5a6de937cb (commitcomment-11755140)
https://wiki.gentoo.org/wiki/Binary_package_guide#Using_binary_packages
8 years ago
Henrik Wallström c241fb78a8 Modules to manage IIS
Wraps the Web Server Administration module for PowerShell into Ansible modules.
8 years ago
Dustin C. Hatch 90df50b045 packaging/os/portage: Handle noreplace in check mode
The `--noreplace` argument to `emerge` is generally coupled with
`--newuse` or `--changed-use`, and can be used instruct Portage to
rebuild a package only if necessary. Simply checking to see if the
package is already installed using `equery` is not sufficient to
determine if any changes would be made, so that step is skipped when
the `noreplace` module argument is specified. The module then falls back
to parsing the output from `emerge` to determine if anything changed. In
check mode, `emerge` is called with `--pretend`, so it produces
different output, and the parsing fails to correctly infer that a change
would be made.

This commit adds another regular expression to check when running in
check mode that matches the pretend output from `emerge`.

Signed-off-by: Dustin C. Hatch <dustin@hatch.name>
8 years ago
Dustin C. Hatch c514a9a940 packaging/os/portage: Improve check mode handling
When running in check mode, the *portage* module always reports that no
changes were made, even if the requested packages do not exist on the
system. This is because it was erroneously expecting `emerge --pretend`
to produce the same output as `emerge` by itself would, and attempts to
parse it. This is not correct, for several reasons. Most specifically,
the string for which it is searching does not exist in the pretend
output. Additionally, `emerge --pretend` always prints the requested
packages, whether they are already installed or not; in the former case,
it shows them as reinstalls.

This commit adjusts the behavior to rely on `equery` alone when running
in check mode. If `equery` reports at least one package is not
installed, then nothing else is done: the system will definitely be
changed.

Signed-off-by: Dustin C. Hatch <dustin@hatch.name>
8 years ago
Eike Frost 754df8ff20 add zabbix proxy support to zabbix_host 8 years ago
Brian Coca a4a17630cd forgot finally 2.4 syntax 8 years ago
Brian Coca bfa63e01e5 also fixed exceptions 8 years ago
Brian Coca 027aaed757 made sensu_check 2.4 friendly 8 years ago
Toshio Kuratomi 5afc244147 Modify a few more modules to not conditionalize urllib(2) import. 8 years ago
Toshio Kuratomi 16bd2c7357 be explicit about urllib import and remove conditional urllib(2) import
urllib and urllib2 have been in the python stdlib since at least
python-2.3.  There's no reason to conditionalize it.

Fixes https://github.com/ansible/ansible/issues/11322
8 years ago
Anders Ingemann 655fa27dc7 Add sensu_check module 8 years ago
Brian Coca c73d248ba6 monior docfixes added extensino to vsphere_copy so it actually installs 8 years ago
Amir Moulavi 4588a4f9ed Implementation of EC2 AMI copy between regions 8 years ago
Rene Moser ee2809d4f4 cloudstack: new module cs_facts 8 years ago
Dag Wieers 209ba9aed0 Spurious newline could corrupt payload
Due to a spurious newline we corrupted the payload. It depends on the order of the headers and if there were headers added by vSphere.

The Accept header was also not needed.
8 years ago
whiter cc47adbc03 New module - ec2_eni 8 years ago
Rob White 4ad6cc183a Updated documentation and added boto profile support. 8 years ago
Robert Estelle b180b97273 ec2_vpc_igw - Rename IGWException to AnsibleIGWException. 8 years ago
Robert Estelle 83d3ff2692 ec2_vpc_igw - Exit with fail_json when boto is unavailable. 8 years ago
Robert Estelle 9433c88aef Add ec2_vpc_igw module. 8 years ago