Michael DeHaan
3778b39115
Merge pull request #4380 from joshkehn/lineinfile_validate
...
Added validate option to lineinfile
11 years ago
Michael DeHaan
41ed5635dc
Merge pull request #4632 from simonsd/devel
...
refusing to convert between file and hard when force=yes
11 years ago
Michael DeHaan
d0904ded84
Merge pull request #4600 from earchibald/devel
...
Added ['date_time']['tz_offset'] using %z to get the time offset rather ...
11 years ago
Michael DeHaan
aac4c01786
Merge pull request #4597 from vegitron/devel
...
Allow generic django_management commands
11 years ago
Michael DeHaan
b725361bce
Merge pull request #4560 from tronner/issue4461
...
Fix illegal set operation in FreeBSD section of user module.
11 years ago
Michael DeHaan
2b785ec7e5
Merge pull request #4610 from bennojoy/gcs_fix3
...
fix for overwrite in put operation
11 years ago
Michael DeHaan
da82906da5
Merge pull request #4680 from berendt/fix_permissions_of_ovirt
...
fixed permissions of module library/cloud/ovirt
11 years ago
Michael DeHaan
9858b1f2f3
Enable imports to work on a snippet based system, allowing for instance a library of common EC2 functions
...
to be reused between modules. See library/system/service and library/system/ping for initial examples. Can
work the old way to just import 'basic', or can import the new way to import multiple pieces of code from
module_utils/.
11 years ago
Christian Berendt
42d877146c
fixed permissions of module library/cloud/ovirt
11 years ago
jctanner
43f48a2e02
Merge pull request #4167 from tima/rsync3
...
synchronization module take 3
11 years ago
James Tanner
40574c1938
Fixes #4448 reloaded services should be started if not running
11 years ago
James Cammarata
aa0577c211
Merge branch 'fix_autorized_keys' of https://github.com/mscherer/ansible into mscherer-fix_autorized_keys
11 years ago
James Cammarata
b58b287fce
Fixing up authorized_keys to accept comments with spaces
11 years ago
Michael Scherer
951a91723d
make sure that options are quoted, as people can add a shell
...
script there with a comma that would produce invalid configuration
upon being wrote again
11 years ago
Michael Scherer
7672e9fef8
sort the option_key to have a constant predictable line
11 years ago
Michael Scherer
264945a1f7
adding a single comma at the end of the options list confuse the module
...
it start to duplicate line, because this create
a empty option in the list, and so the module add a new line along the previous
one. See
>>> ' a,b, '.strip().split(',')
['a', 'b', '']
11 years ago
jctanner
f61a4c1eb3
Merge pull request #4631 from mmoya/mysql_variables-fix3
...
Fail if requested variable is not available
11 years ago
jctanner
509271f740
Merge pull request #4624 from SirScott/freebsd_service_module_uwsgi
...
Fix broken FreeBsdService class
11 years ago
James Tanner
8157d5e52a
Set version_added for ec2_eip's in_vpc parameter
11 years ago
jctanner
0b4f84d780
Merge pull request #4593 from pas256/eip-vpc
...
Add VPC support for EIP module
11 years ago
James Tanner
6f523111d3
Set bigip_pool_member version added to 1.4
11 years ago
James Tanner
b803aac6ec
Fixes #4500 change ec2 module params to type=bool
...
Revert 4833c2fdf0
11 years ago
jctanner
e34cde6bef
Merge pull request #4112 from jsdalton/add_az_support_to_ec2_elb
...
Add enable_availability_zone parameter to ec2 module.
11 years ago
jctanner
de1e3f0cbc
Merge pull request #4054 from mhite/bigip_pool_member
...
New bigip_pool_member module
11 years ago
Dave Simons
4d4518ed52
fix conversion from file to hardlink when force=yes
...
Signed-off-by: Dave Simons <dave@inuits.eu>
11 years ago
Maykel Moya
3db7ec8356
Fail if requested variable is not available
11 years ago
bennojoy
0c275424c6
fix to work like copy module
11 years ago
Scott Sturdivant
4d24e2e29f
If the output of rcvar isn't a key=value pair, ignore it.
11 years ago
bennojoy
788e783b6d
fix for overwrite in put operation
11 years ago
Eugene Archibald
30eb5c7342
Fixed (broken) tab to (correct) spaces for indentation
11 years ago
Michael DeHaan
21d4400c96
Misc pep8 fixes
11 years ago
Michael DeHaan
aa93ce2dc2
Fix deprecation warnings in the Google modules.
11 years ago
Michael DeHaan
75e0a1c6de
Merge pull request #4592 from mscherer/fix_4586
...
setup module, replace ':' by '_' in interface name, fix #4586
11 years ago
Jimmy Tang
0568abeb14
check for ubuntu distribution first
11 years ago
Eugene Archibald
145c0b8be1
Added ['date_time']['tz_offset'] using %z to get the time offset rather than time zone.
11 years ago
Patrick Michaud
c1e241577c
Allow generic django_management commands
...
This commit removes the restriction on django management commands. If a command is unknown to the django installation, there will be a concise error produced.
for example:
tasks:
- name: invalid command
django_manage: virtualenv="/valid/virtualenv" app_path="/valid/app_path" command="nowaydude"
Results in:
failed: [hostname] => {"cmd": "python manage.py nowaydude", "failed": true}
msg: stdout: Unknown command: 'nowaydude'
Type 'manage.py help' for usage.
:stderr: Unknown django command: nowaydude
11 years ago
Michael DeHaan
232eb9f8e6
Merge pull request #4595 from mscherer/fix_4563
...
fix logic in module host to add aliases even if none exist already, fix #4563
11 years ago
Michael DeHaan
b5c34308dd
Merge pull request #4594 from mscherer/fix_4587
...
fix distribution detection in apt_repository module, so it also work on mint as it work on Debian, partially fix #4587
11 years ago
Michael Scherer
d5c290b513
fix logic in module host to add aliases even if none exist already, fix #4563
...
self._has_aliases is used to know if a alias already exist, but
the test we want is to know if we need to add a new alias, which
is stored in self.aliases
11 years ago
Michael Scherer
19bb44288e
fix distribution detection in apt_repository module, so it also work
...
on Mint as it work on Debian, fix #4587 .
PPAs are not supported however, since that's a Ubuntu specific feature
and mint is detected as a generic distribution and use a different
codename than the Ubuntu release it is based on, which mean that apt_repository
cannot add detect and add the proper url without a better heuristic.
11 years ago
Michael Scherer
fc211ac1a0
setup module, replace ':' by '_' in interface name, fix #4586
11 years ago
Peter Sankauskas
b793248df4
Now this disassociates EIPs from instances inside a VPC correctly. Time
...
for a PR.
11 years ago
James Tanner
3c4dd618e4
Fixes #4454 Make a temporary clean cnf file if unable to parse existing
11 years ago
Peter Sankauskas
0e459f65f0
First round of changes to the EIP module to get it to be able to work well inside a VPC, and to be able to delete EIPs as well
11 years ago
jctanner
92edf99c80
Merge pull request #4562 from nimbis/devel
...
Adding aws_access_key and aws_secret_key aliases to ec2_group arguments
11 years ago
Brian Schott
bdc8ea828e
added aws_access_key and aws_secret_key aliases to ec2_group arguments
11 years ago
jctanner
12eaefb7e6
Merge pull request #4539 from sayap/git-sha1
...
git: Always return the before/after revisions, even in check mode.
11 years ago
Michael DeHaan
8666f8ea24
Merge pull request #4568 from mmoya/features
...
Improve change detection in mysql_variables
11 years ago
James Tanner
4f674ec522
Fixes #4554 Enumerate user homedir if not passed as an argument
11 years ago
Maykel Moya
b90a250165
Improve change detection in mysql_variables
...
mysql_variables bindly executes a SET var = value query even when
the variable already has the requested value.
With this patch the query is executed only if the current value is
different to the requested one.
11 years ago