Commit Graph

6934 Commits (d55a4d59dc02b65fbeffb7f7c977521514395f65)
 

Author SHA1 Message Date
Brian Coca d55a4d59dc Merge pull request #1956 from cchurch/strict_mode_fixes
Update core modules to fix strict mode errors
9 years ago
Brian Coca d8f45bab41 Merge pull request #1607 from abriening/win_get_url_updates
Adds basic authentication & skip certificate validation to win_get_ur…
9 years ago
Brian Coca 57c0b86db4 Merge pull request #721 from jinowolski/devel
update git remote url before ls-remote
9 years ago
Toshio Kuratomi 2520627fe7 Make sure listener ports are ints.
May fix #1984
9 years ago
Benno Joy 2f42cd4b2c Merge pull request #1951 from galindro/ec2_asg_termination_policies
Added termination_policies option
9 years ago
Brian Coca e278f285aa partially reverted previous change to deal with systemctl show status not returning errors on missing service
Now it looks for not-found key instead of running status which does return error codes when service is present but in diff states.
fixes #12216
9 years ago
James Cammarata 6df6e5977e Merge pull request #2000 from jsmartin/os_server_fix
Adds sanity check to make sure nics is a list.
9 years ago
James Martin c54f875fdd Adds sanity check to make sure nics is a list. 9 years ago
Charles Paul 6a40e8b454 vm_floppy 2.0 support 9 years ago
Chrrrles Paul 7106d0f914 Merge pull request #1996 from ansible/revert-1995-revert-1720-feature-virtual-floppy
Apologies for double reversion, git workflow error -- Revert "Add 2.0 docs - Revert "add virtual floppy to VMware guest""
9 years ago
Chrrrles Paul 8ebd6cc7cd Revert "Add 2.0 docs - Revert "add virtual floppy to VMware guest"" 9 years ago
Chrrrles Paul 5ae5be2168 Merge pull request #1995 from ansible/revert-1720-feature-virtual-floppy
Add 2.0 docs - Revert "add virtual floppy to VMware guest"
9 years ago
Chrrrles Paul 3830af652f Revert "add virtual floppy to VMware guest" 9 years ago
Brian Coca bbcfb1092a check systemctl status before show as show will not return antyhing other than rc=0 even when it fails. 9 years ago
Brian Coca 68ab025dac minor doc fixes 9 years ago
Chrrrles Paul 943a892435 Merge pull request #1720 from nivanko/feature-virtual-floppy
Useful addition to vsphere_guest and the code looks good.  I will do more testing.  Merging into devel branch -- add virtual floppy to VMware guest
9 years ago
Benno Joy 26928dd7c6 Merge pull request #1990 from rickmendes/usability-enhancements
using single device_id and enabling release on disassociation
9 years ago
Benno Joy b5db274362 Merge pull request #1940 from jcowley/s3-permissions
Add support for S3 canned permissions. resolves #1939
9 years ago
Brian Coca 0bff493fae Merge pull request #1989 from mgedmin/patch-1
authorized_key: fix example in documentation
9 years ago
Toshio Kuratomi 06fc029f73 Remove non-ascii quote char 9 years ago
Rick Mendes a18c96882e using single device_id and enabling release on disassociation 9 years ago
Marius Gedminas 5595a9f81d authorized_key: fix example in documentation
'key=' cannot be pointing to a file name; it needs to be the key itself as a string (or a URL).
9 years ago
Brian Coca ef1f31c652 Merge pull request #1986 from caphrim007/add-kali-linux-support-to-hostname-module
Add hostname support for Kali linux 2.0
9 years ago
Tim Rupp 48f522455d Add hostname support for Kali linux 2.0
This patch allows the hostname module to detect and set the hostname for a
Kali Linux 2.0 installation. Without this patch, the hostname module raises
the following error

   hostname module cannot be used on platform Linux (Kali)

Kali is based off of Debian.
9 years ago
Chrrrles Paul 5fc4f9d876 Merge pull request #1982 from lowwalker/patch-2
Merging, good catch -- updated examples
9 years ago
Brian Coca 6b15fc6259 Merge pull request #1983 from lowwalker/patch-3
removed hyphens in module name in examples
9 years ago
Luke 40f2ff9fbf removed hyphens in module name in examples 9 years ago
Luke a4aa29edd9 updated examples
When testing with existing example, I received errors about auth block not being ingested. After adding the auth block, name and state with "=" caused syntax errors.
9 years ago
Benno Joy 66288d48a2 Merge pull request #1703 from haad/ec2_start_stop_by_tag
Rebase start/stop by instance tag
9 years ago
Benno Joy 512b485a90 Merge pull request #1871 from evanccnyc/devel
Adding the ability to associate eips with network interfaces on Amazon EC2
9 years ago
Benno Joy 7fe0de5a3a Merge pull request #1974 from tima/rds-timeout-err
Fixed RDS timeout error that calls non-existent attribute
9 years ago
Benno Joy aafb04e914 Merge pull request #1969 from mgedmin/fix-1678
apt: check for "0 upgraded" to be at the beginning of the line
9 years ago
Benno Joy 8bf800d5c5 Merge pull request #1973 from mgedmin/user-no-ssh-keygen-in-check-mode
user: don't generate SSH keys in check mode
9 years ago
Timothy Appnel 2ba32a8b10 Clarified and cleaned up grammar of error messages. 9 years ago
Timothy Appnel 0e42b1708b Fixed call to undefined attribute when RDS module timeouts waiting. 9 years ago
Brian Coca 8cc9fdde4a Merge pull request #1952 from manics/authorized_key-check_mode-user_path
Don't fail in authorized_key check_mode if user exists
9 years ago
Marius Gedminas 4ae4331a6b user: don't generate SSH keys in check mode
Fixes https://github.com/ansible/ansible/issues/11768

Test plan:

- (in a Vagrant VM) created a user 'bob' with no ssh key
- ran the following playbook in check mode:

    ---
    - hosts: trusty
      tasks:
        - user: name=bob state=present generate_ssh_key=yes

- saw that ansible-playbook reported "changes=1"
- saw that /home/bob/.ssh was still absent
- ran the playbook for real
- saw that /home/bob/.ssh was created
- ran the playbook in check mode again
- saw that ansible-playbook reported no changes
- tried a variation with a different username for a user that didn't
  exist: ansible-playbook --check worked correctly (no errors, reported
  "changed")
9 years ago
Marius Gedminas eb17b6a36c apt: check for "0 upgraded" to be at the beginning of the line
Fixes #1678.
9 years ago
Brian Coca 116793889f Merge pull request #1915 from leedm777/patch-1
ec2_vol: Added missing "needs 2.0" doc
9 years ago
Toshio Kuratomi b29276df34 Merge pull request #1204 from detiber/test_rhsm
bugfixes for redhat_subscription
9 years ago
Brian Coca aae5177164 Merge pull request #1966 from tback/devel
Delete dead and broken code
9 years ago
Till Backhaus 39e7e05a8d Delete dead and broken code 9 years ago
Brian Coca bc6a8761a1 Merge pull request #1958 from omriiluz/Bugfix-for-1957
No need for .keys on volumes list
9 years ago
Omri Iluz daf7a0551b No need for .keys on volumes list
Since c3f92cca21 changed "volumes" to be a list instead of a dictionary, we don't need (and cannot) .keys when appending to set.
Reported as bug #1957
9 years ago
Chris Church 1d074d43aa * Update core modules to fix strict mode errors.
* Also fix creates parameter issue in win_msi as described in https://github.com/ansible/ansible-modules-core/issues/129, slightly different fix from https://github.com/ansible/ansible-modules-core/pull/1482
* Fix setup.ps1 module issue described in https://github.com/ansible/ansible-modules-core/issues/1927
9 years ago
James Cammarata 85ddb1b902 Fixing region requirement regarding euca clusters
Fixes ansible/ansible#11023
9 years ago
Brian Coca 630e8ef9a6 Merge pull request #1954 from nitzmahone/setup_uptime
added windows facts ansible_lastboot, ansible_uptime_seconds
9 years ago
nitzmahone 2a5f3754e7 added windows facts ansible_lastboot, ansible_uptime_seconds
switched OS object to Get-CimInstance since we need a DateTime object for lastbootuptime
9 years ago
Bruno Galindro da Costa f7f621839a Added termination_policies option 9 years ago
Simon Li 428550e179 Don't fail in check_mode if user exists
PR #1651 fixed issue #1515 but the requirement for path to be defined is unecessarily strict. If the user has previously been created a path isn't necessary.
9 years ago