Commit Graph

6857 Commits (5913f5e5e125a871f68ae8564a8e14a634b89635)
 

Author SHA1 Message Date
Toshio Kuratomi 688a268df6 Merge pull request #762 from j2sol/authorized-key-exclusive
Add exclusive option to authorized_keys
10 years ago
Jesse Keating e0c5b4340d Add exclusive option to authorized_keys
This option allows the module to ensure that ONLY the specified keys
exist in the authorized_keys file. All others will be removed. This is
quite useful when rotating keys and ensuring no other key will be
accepted.
10 years ago
Capi Etheriel 5854f53cdc add ec2 instance tags and groups info 10 years ago
Brian Coca 095f8681db Merge pull request #597 from jbbarth/bug/fix-ec2-spot-provisionning/423
EC2: move logic about terminated instances up (#423)
10 years ago
Brian Coca 42ab01711d Merge pull request #757 from philalex/AnsibleHostname-dev
Add Linuxmint support in hostname module
10 years ago
Jon Hadfield b20b29bd17 use is-enabled to check systemd service status. 10 years ago
Coderah aa2b1f033b add alias support to route53 module 10 years ago
Coderah d92cd07156 add hosted_zone information to ec2_elb_lb return 10 years ago
Philippe ALEXANDRE ac1a64e62f Add Linuxmint support in hostname module 10 years ago
Jesse Keating cf0e8d62d2 Add service option to avoid failure on missing service
This adds a must_exist option to the service module, which gives callers the
ability to be tolerant to services that do not exist. This allows for
opportunistic manipulation of a list of services if they happen to exist on the
host. While failed_when could be used, it's difficult to track all the
different error strings that might come from various service tools regarding a
missing service.
10 years ago
Brian Coca b9786835eb Merge pull request #554 from likwid/devel
Added ability to use url as key source
10 years ago
Graham Hay 17c7d9c5d5 Use insserv where available 10 years ago
Jean-Baptiste Barth 6090c4e109 Improve formatting after previous commit 10 years ago
Jean-Baptiste Barth b451cbd37b EC2: move logic about terminated instances up (#423)
As stated in #423, the commit 7f11c3d broke ec2 spot instance launching
after 1.7.2. This is because it acts on the 'res' variable which have 2
different types in the method, and in case we request spot instances,
the resulting object is not a result of ec2.run_instances() but
ec2.request_spot_instances(). Actually this fix doesn't seem to be
relevant in the spot instances case, because by construction we won't
retrieve 'terminated' instances in the end.
10 years ago
moe 0d0205ad54 Woops, make collect/delete loop more efficient. 10 years ago
moe 047bd6f651 Fixes #744.
The following cases work for me now:
- Create new ASG with tags
- Update tags on ASG (create/change/delete)

In short, the module should now work as expected
wrt tagging. The previous code did not work at all
with latest boto for me (serialization errors) and
the logic was buggy anyway; e.g. removed tags
would never get deleted from ec2.
10 years ago
Jeff Gonzalez 27c046ae79 Refactored code to use module utility fetch_url function. 10 years ago
Brian Coca 600fc15b42 Merge pull request #46 from Jmainguy/yum_oracle_fix_enable_repo
Fixes --enable-repo for Oracle Linux
10 years ago
Alexis Seigneurin 6d6e948f1e - 'name' should not be required so as to allow uninstalling a cron_file 10 years ago
Raghu Udiyar eab438ce5f Creating ami should be idempotent
If the ami already exists, return details of the duplicate
ami instead of failing with an error.
10 years ago
Brian Coca 1394920cd3 Merge pull request #44 from Jmainguy/mysql_db_6860
adds error message if socket does not exist
10 years ago
Sergey Zhukov 7baaf97a8b Fixed broken volumes_from for client API >= 1.10 10 years ago
Toshio Kuratomi be744ce5e7 Reverse the force parameter for the hg module 10 years ago
Toshio Kuratomi 753a3ba382 Merge pull request #624 from mscherer/use_rpm_module
Use the rpm python module rather than execing rpm
10 years ago
Eric Johnson 802c235894 Merge pull request #723 from pmoosh/devel
[google | gce_pd] adding disk_type option to choose from pd-ssd or pd-standard

Thanks @pmoosh !
10 years ago
Matt Ferrante e1f2c570eb check keys is in dim2 before evaluating 10 years ago
Peter Mooshammer 0c49d9f6c6 adding disk_type option to choose from pd-ssd or pd-standard 10 years ago
Brian Coca f4dbcea30c Merge pull request #295 from techtonik/patch-3
acl: Fix X support in ACL permissions
10 years ago
Toshio Kuratomi 256ce9dd4d Change the git force parameter to default to no as a safety change.
Fixes #306
10 years ago
Toshio Kuratomi e2c1a0d2dd Make documentation list when force changed defaults 10 years ago
Toshio Kuratomi 6350e6a4cc Update force documentation to reflect default=no 10 years ago
Toshio Kuratomi 31a56e23f2 Merge pull request #506 from mscherer/fix_370
Fix #370
10 years ago
Brian Coca e2083bbe8a corrected version added for latest features 10 years ago
Brian Coca 82afff31a9 Merge pull request #718 from bcoca/rds_refactor_fixes
minor fixes on new rds refactor
10 years ago
Matt Martz 835f762cbb Merge pull request #672 from sivel/rax-cdb-db-fixups
rax_cdb_database: Remove unnecessary logic, return the database on delete
10 years ago
Brian Coca a28ad0db83 minor fixes on new rds refactor 10 years ago
Brian Coca c5d7f07aa0 Merge pull request #5 from willthames/rds_refactor
Rds refactor
10 years ago
Brian Coca 1f0fb0745a Merge pull request #716 from cdgraff/devel
Example added
10 years ago
Brian Coca 9540019ae7 Merge pull request #715 from bcoca/user_expires
implemented account expiration as flag and not state
10 years ago
AlejandroF 7b40f63a4d Example added
How to define specific version of the package we need...
10 years ago
Brian Coca 543c45a15f implemented account expiration as flag and not state, removed from unsupported platforms 10 years ago
Wouter Bolsterlee 8ce0284ace Add a virtualenv_python argument to the pip module
This allows specifying the Python version to use when creating the
virtualenv. See issue #586.
10 years ago
Wouter Bolsterlee 19b49c1d96 A few coding style cleanups 10 years ago
Wouter Bolsterlee fd061d437c Fix typo in `version_added` field. 10 years ago
Brian Coca fc1045a1ee Merge pull request #41 from billwanjohi/add_expired_state
user: add expired state
10 years ago
Jeff Gonzalez e9ae165792 Added documentation for using url as key source 10 years ago
Toshio Kuratomi 98f0c0424a Remove str.format() usage for python2.4 compat.
Fixes #10036
10 years ago
Toshio Kuratomi 26cd1a2d9a Merge pull request #711 from conrado/apt-builddep
fixed: namespace clash #710
10 years ago
Conrado Buhrer bd208da8ea fixed: namespace clash #710 10 years ago
Toshio Kuratomi 589b3ef649 Merge pull request #704 from conrado/apt-builddep
added: build-dep to apt module #349
10 years ago