James Martin
fa63a9b5f4
CloudFormation support.
12 years ago
Michel Blanc
92c679142f
Optimizes using fnmatch only if needed
...
Skips fnmatch'ing if there is only a '*' in filter.
12 years ago
Michel Blanc
633fdede38
Fixes duplicate code
...
Fixed duplicate call for file attributes checking
12 years ago
Johan Wirén
ee517ea53c
Added support for --check in zfs module
12 years ago
Till Maas
cc8fbe34f2
mysql_user: handle unnecessary GRANT revocation
12 years ago
Till Maas
813d2335ad
mysql_db/user: Use password for my.cnf
...
According to the MySQL docs[0] the password should be stored after
'password=' instead of 'pass='.
[0] http://dev.mysql.com/doc/refman/5.1/en/password-security-user.html
12 years ago
Michel Blanc
008dc4831e
Improves lineinfile and adds file attr option
...
Added path expanding for dest in lineinfile
Added common file arguments to lineinfile so the module gets owner,
group, mode and SE options.
Decorated existing example to demonstate usage of file options and added
a couple more examples
Message is not set accordingly when file attributes were changed
'absent' handling code now handles the case where the file doesn't
exists (was issuing a Traceback before)
File attribute handling code has been added to the 'absent' handling
function too.
File attributes handling has been grouped in 'def check_file' since it's
required in both places.
'absent' mode now returns a message like it's counterpart 'present',
telling if file attributes were altered and if lines have matched.
12 years ago
Daniel Hokka Zakrisson
c364e4c77b
cron: Work even without initial crontab
...
Fixes #2165 .
12 years ago
Michel Blanc
7c270078f4
Moved key filtering
...
Key filtering moved before returning results
12 years ago
Maykel Moya
5e68143c46
Check presence of files under /proc before opening them
12 years ago
Maykel Moya
8b27085c34
Prevent traceback when /etc/mtab is not available
...
* get_file_contents returns None when file is not available.
When /etc/mtab is pointing to /proc/mounts and /proc is not
mounted, mtab.split will traceback.
12 years ago
Michel Blanc
627577ecc9
Fixes unused var and avoid reassigning keys
...
Changed code so key doesn't get reassigned in loop
Made use of filtr variable
12 years ago
Michel Blanc
139e06d9af
Added more examples for the filter option in setup
...
Added examples covering all available globs
Added a use case of filtering only facts returned by facter
12 years ago
Michel Blanc
5f4a24557b
Adds example for filter option in setup module
...
Added an example on how to filter keys returned by the module.
12 years ago
Michel Blanc
75b687247a
Adds filter option to setup module
...
Adds facts filtering using fnmatch, via the 'filter' option.
Usage:
ansible -m setup -a 'filter=ansible_*_mb'
12 years ago
Michael DeHaan
a875b63703
Merge pull request #2152 from dagwieers/pause-doc
...
pause: Fix small documentation glitch
12 years ago
Dag Wieers
486889bbbd
Add force= and make thirsty= an alias for backward compatibility
12 years ago
Dag Wieers
577f491368
pause: Fix small documentation glitch
12 years ago
Rodney Quillo
621eb5eccc
Add postgresql_db and postgresql_use checkmode.
12 years ago
Michael DeHaan
7a7d02073a
Merge pull request #2119 from jpmens/uri_json
...
uri: load JSON for content-type: application/json
12 years ago
Jeroen Hoekx
9f65233e96
Easy_install and pip module support a virtualenv_command parameter.
...
This allows flexible selection of the Python version to use while
creating the virtualenv.
12 years ago
Jan-Piet Mens
b448cc8eff
uri: load JSON for content-type: application/json
...
document
check prefix of content-type and merge dicts
amend doc
load JSON into 'json' subkey
12 years ago
Jeroen Hoekx
01e66c6687
Add virtualenv_site_packages param to easy_install
12 years ago
Michael DeHaan
7834d021b9
Merge pull request #2138 from bcoca/2137_fix_setup_bsdjails
...
fixes freebsd setup issues with jails
12 years ago
Michael DeHaan
ae599d8a61
Merge pull request #2115 from kavink/devel
...
teach apt module to support --check mode
12 years ago
Michel Blanc
e0496634c5
Removes useless empty string write
...
It s not necessary to write an empty string for the file to be created.
12 years ago
Michel Blanc
6f9d28c8b1
Changed when new sysctl file is created
...
When destination sysctl file is missing, it is created.
But, for idempotency purposes, the creation process now takes place just before it is used, in the
main code path so an empty file is not left over if the code
module.fail_jsons before the file is really used.
12 years ago
Michel Blanc
0eaa936ba0
Removes exception is sysctl file is missing
...
When syscl file was missing, sysctl module was complaining about it and
bailing out.
This behaviour prevents usage of /etc/sysctl.d directory, present in
some distributions.
This patch accepts a missing sysctl.conf file so sysctl.d directory can
be used.
However, it will bail out if the destination directory doesn't exist.
12 years ago
lwade
107733b174
Add support for security group id parameter, remove default for group name (since AWS already sets a default). ISSUE #2029
12 years ago
Brian Coca
aa713d72ef
fixes freebsd setup issues with jails
...
Signed-off-by: Brian Coca <bcoca@tablethotels.com>
12 years ago
Kavin Kankeshwar
0f166d870a
teach lineinfile module to support --check mode
12 years ago
Kavin Kankeshwar
53924b4599
teach apt module to support --check mode
12 years ago
Daniel Hokka Zakrisson
3f2fd22ed4
Don't consider packages missing from the cache an error on remove
...
Fixes #2017 .
12 years ago
Daniel Hokka Zakrisson
d2bf205a5d
Fix #2125 and clean up a few things along the way
12 years ago
lessmian
a124a7f6a1
sysctl module: fixed issue when checks_after fail on comparing keys with values separated by white strings
12 years ago
lessmian
e8254dee4d
mail module: properly set charset
12 years ago
Lorin Hochstein
eac339e98a
Add documentation about PUBLIC user
12 years ago
Lorin Hochstein
4a90e2b50a
postgresql_user: Add support for PUBLIC
...
This change enables users to add and remove permissions to all roles,
using the PUBLIC user. This is equivalent to using the PUBLIC keyword
in GRANT and DENY postgres SQL commands.
For example, see: <http://www.postgresql.org/docs/current/interactive/sql-grant.html >
Fixes #1833
12 years ago
Romeo Theriault
1c91917ed5
uri doc fixes
12 years ago
lessmian
8a49dac5d1
Fixed remove_key
12 years ago
Michael DeHaan
093935ede1
Merge pull request #2116 from lwade/devel
...
Correct ec2_vol doc errors
12 years ago
Daniel Hokka Zakrisson
4a137641d2
check_mode is a module property
12 years ago
lwade
3b9cf8270f
Correct ec2_vol doc errors
12 years ago
Michael DeHaan
ab389d8908
For consistency, add host should take a key named 'name' in addition to 'hostname'.
12 years ago
Michael DeHaan
cc9bc91a6c
Fix typo in zfs module docs
12 years ago
Michael DeHaan
8097fd18a2
'make pep8' is now clean
12 years ago
Johan Wirén
acc58a37df
Set version_added to 1.1
12 years ago
Johan Wirén
5ae5fe83ac
zfs module no longer destroys the layout in webdocs
12 years ago
Michael DeHaan
18cbb64f25
Teach the yum module to support --check mode.
12 years ago
Michael DeHaan
4f249902b3
Taught service how to use --check mode
12 years ago
Michael DeHaan
ad89ab7c5d
Add group support to check mode.
12 years ago
Michael DeHaan
fdbbb171ba
Teach the user module to understand check mode.
12 years ago
Michael DeHaan
b63bf62b13
Remove debug print message
12 years ago
Michael DeHaan
1ecf4a6943
Working on complex argument support.
12 years ago
Michael DeHaan
5a91873983
resolve merge conflict
12 years ago
Daniel Hokka Zakrisson
6ffc8a1441
Recurse was added in 1.1
12 years ago
Michael DeHaan
931b9f41c8
Make note about enablement bit
12 years ago
Michael DeHaan
934f416387
Avoid the 'state=null' coming back from the service module.
12 years ago
Michael DeHaan
e43abe326f
Added a tunneling example
12 years ago
Michael DeHaan
b365e04616
Allow add_host to add hosts to multiple groups, groups is now an alias for groupname.
12 years ago
Rob Parrott
ef17fc9f20
add the ability to take variables in the add_host module, and be willing to parse a host:port hostname handed to add_host
12 years ago
Michael DeHaan
c000bd846b
Hate to do this, but URI module docs were constructing messed up RST files, so removing examples for now. Will ask someone to work on them.
12 years ago
Michael DeHaan
5f829f9926
Add versionadded element to new option, fix YAML formatting
12 years ago
Michael DeHaan
369d586651
Merge pull request #2086 from lwade/devel
...
Adding a simple EC2 volume module for creation and attach
12 years ago
Michael DeHaan
cb3d26c500
Merge pull request #2084 from johanwiren/zfs
...
Added zfs module
12 years ago
Michael DeHaan
a01525bd30
Merge branch 'aix-fixes' of git://github.com/dagwieers/ansible into devel
...
Conflicts:
library/setup
Tweak formatting.
12 years ago
Michael DeHaan
df63f60b63
Tweak doc examples
12 years ago
Romeo Theriault
1232e498c4
fixed the documentation so it build properly
12 years ago
Romeo Theriault
2ecf3f9b94
moved module checking below module initialization
12 years ago
Romeo Theriault
27145fab7f
uri module
12 years ago
James Martin
7129a9e355
Using "OtherLinux" in module_commons, cleander detection in setup.
12 years ago
James Martin
5646bc278b
Support for amazon linux distribution facts.
12 years ago
Yves Dorfsman
83ce1b2dc5
Modified to follow Daniel Hokka Zakrisson's recommendations.
12 years ago
Yves Dorfsman
4de1b4e8a9
Added an insertbefore option.
12 years ago
Blair Zajac
fa8e653011
Simplify and correct comparisons with None.
12 years ago
Michael DeHaan
2172201795
Merge pull request #2091 from davixx/sysctl2004
...
Solving bug : sysctl check_after failing on multi-value sysctl parameters
12 years ago
Michael DeHaan
21693b2d22
Merge pull request #2079 from huberteff/devel
...
Add NetBSD support for 'service' module, and add an example to 'lineinfile'
12 years ago
Michael DeHaan
7827db6996
Merge pull request #2078 from huberteff/e2158b661d250c04609e7faff4d8e67df9cb37e4
...
Add example for adding to sudoers file
12 years ago
Michael DeHaan
85c87e507e
Slight docs tweak about thirsty mode on the copy module
12 years ago
Michael DeHaan
b5f90ef054
Merge branch 'thirsty_copy' of git://github.com/bcoca/ansible into testing
12 years ago
Michael DeHaan
11c730c4ca
Merge branch 'devel' of git://github.com/trendels/ansible into testing
12 years ago
Johan Wirén
75b52d745e
Updated documentation. Works with ansible-doc
12 years ago
davixx
8bf0c8dc5c
Solving bug https://github.com/ansible/ansible/issues/2004
...
Now handle positive integer value in virtual files if they are separated
by group of space characters where the count is unpredictable.
Thanks to romeotheriault for filing this bug.
12 years ago
Peter Sankauskas
6fd0316fa6
The default for install-recommends is actually Yes, not No, as is
...
visible on line 121
12 years ago
lwade
0a2a647831
Updated comments and closed code example.
12 years ago
lwade
8617b6df90
Adding a simple EC2 volume module for creation and attach
12 years ago
Johan Wirén
19c94d7380
Added zfs module
12 years ago
Mark Maas
6a89177a59
Added support for AIX 5.3 and 6.1
...
A collegue of mine has added basix AIX support to the setup, user and group modules.
We have tested this on AIX 5.3 and 6.1 and it works "as advertised"
12 years ago
Daniel Hokka Zakrisson
584fd7a261
Fix Python 2.6-isms in sysctl module
12 years ago
Hubert Feyrer
18d9fc581d
Add support for NetBSD. Tested on NetBSD 6.0/i386.
12 years ago
Hubert Feyrer
e2158b661d
Add Linux-style path for sudoers file, to be consistent with other examples.
12 years ago
Hubert Feyrer
d4b9de643b
Add an example on how to *add* a %wheel line to sudo - tricky as it has
...
a colon, which needs some special attention.
12 years ago
Nigel Metheringham
bd2bb0a297
Mac/FreeBSD Network Facts implementation
...
Uses a generic BSD Network class, which uses ifconfig and
parses crap out of it. Modifies the Network __new__
implementation to search further down the subclass
tree
12 years ago
Michael DeHaan
81d426de2a
Merge pull request #2066 from lorin/git-example
...
Add example of read-write git checkout via ssh
12 years ago
Lorin Hochstein
321175cdfa
Add example of read-write git checkout via ssh
12 years ago
Daniel Hokka Zakrisson
85fb8494c5
Clean up device fact gathering
...
Remove lots of re use that really shouldn't have been re in the first
place. Initialize pcidata even if lspci is unavailable, and check for
its usability before trying to use it.
Fixes #2060 .
12 years ago
Javier Candeira
ae81e3607f
fix remote execution NameError in module 'user'
12 years ago
Kavin Kankeshwar
3042366199
Fixing logical error in detecting virtual device.
...
So In my Centos 5.9 machine, if there is RAID mount ansible will crash, as it cannot find scheduler file. The reason being, this should be a virtual device as there is no "device" folder under e.g. /sys/block/md0/
Here is the crash:
[kk@u1 ansible]$ ansible q3 -m setup -k -u root --tree=/tmp/facts
SSH password:
q3 | FAILED => failed to parse: /sys/block/md0
Traceback (most recent call last):
File "/root/.ansible/tmp/ansible-1360629441.14-171498703486275/setup", line 1797, in ?
main()
File "/root/.ansible/tmp/ansible-1360629441.14-171498703486275/setup", line 1050, in main
data = run_setup(module)
File "/root/.ansible/tmp/ansible-1360629441.14-171498703486275/setup", line 1000, in run_setup
facts = ansible_facts()
File "/root/.ansible/tmp/ansible-1360629441.14-171498703486275/setup", line 990, in ansible_facts
facts.update(Hardware().populate())
File "/root/.ansible/tmp/ansible-1360629441.14-171498703486275/setup", line 312, in populate
self.get_device_facts()
File "/root/.ansible/tmp/ansible-1360629441.14-171498703486275/setup", line 439, in get_device_facts
m = re.match(".*?(\[(.*)\])", scheduler)
File "/usr/lib64/python2.4/sre.py", line 129, in match
return _compile(pattern, flags).match(string)
TypeError: expected string or buffer
12 years ago
Michael DeHaan
af3402fe35
Merge pull request #2043 from chrishoffman/rabbitmq
...
Rabbitmq Module Updates
12 years ago
Daniel Hokka Zakrisson
57cac788fb
Fix setup when /sys/block is inaccessible
12 years ago
Daniel Hokka Zakrisson
5ba090c366
Fixes for Python 2.4
12 years ago
Chris Hoffman
507e49396b
Updating how to run commands in check mode
12 years ago
Chris Hoffman
ca3b8228f7
Updating how to run commands in check mode, standarizing quotes
12 years ago
Chris Hoffman
2c947c2ed6
Adding aliases
12 years ago
Chris Hoffman
114a4dc597
Standarizing quotes
12 years ago
Chris Hoffman
31e5e81fcd
Standarizing module in line with other rabbitmq modules, adding support for setting tracing
12 years ago
Chris Hoffman
b79d7a606c
Using new qualified executable
12 years ago
Chris Hoffman
c94ec20a16
Getting fully qualified path for executable
12 years ago
Chris Hoffman
5a4ff6ca60
Cleaning up tag compare, getting fully qualified path for executable
12 years ago
Michael DeHaan
6c4e1db54e
Documentation formatting for mongodb_user so it will show up in ansible-doc and the web.
12 years ago
Michael DeHaan
3c51feb36c
Had to remove the instance_tags example because our doc generator was choking on it, feel free to add it back if you can get it to be valid
...
YAML again :)
12 years ago
Michael DeHaan
27ff22610d
Fix lineinfile docs formatting
12 years ago
Michael DeHaan
5c38248788
Fix crontab doc formatting
12 years ago
Michael DeHaan
c91f8c1565
Merge pull request #2036 from cordmata/devel
...
Add rabbitmq_vhost module.
12 years ago
Matt Cordial
3284fd607f
Add rabbitmq_vhost module.
...
Simply ensures existence or non-existence of a vhost.
12 years ago
Tim Gerla
0f389b311f
Add more error handling to the ec2 module, remove Python 2.6ism
12 years ago
Michael DeHaan
fa44f49afb
Merge pull request #2034 from chrishoffman/rabbitmq
...
Adding rabbitmq modules
12 years ago
shlomozippel
e44412101b
Merge recursive file permission setting on directories
12 years ago
Chris Hoffman
6f7855161c
Adding rabbitmq modules
12 years ago
Michael DeHaan
8db504fba8
Merge branch 'devel' of git://github.com/lwade/ansible into devel
12 years ago
Steve Frank
36027ddbba
Squashed commit of the following:
...
Changed ami_tags to instance_tags to better follow naming convention
Add support for creating tags on the new instances
12 years ago
Brian Coca
0e8627b7e8
added block device info gathering, full for linux, partial for freebsd added prettyfing byte function Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
...
moved moutns out of devices Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
12 years ago
Mike Grozak
171a01deac
Cron module upgrades
...
- added cron_file attribute: if specified, the file with appropriate
job is created in /etc/cron.d directory. Also, you can store multiple
jobs in one file. state='absent' attribute is handled in the following
way in this case: if after the deletion of the job from the file specified
by cron_file variable the file is empty, the file is deleted, otherwise
not.
- fixed the behaviour, when the backupfile is saved forever in /tmp
folder, even if the backup= atribute is not set (os.unlink() is called if
backup is not True).
- added some comments to the unobvious places
12 years ago
Michael DeHaan
aebacdb2d7
Merge pull request #1949 from elliotttf/devel
...
Adding mongodb_user module.
12 years ago
Michael DeHaan
d102f04ffc
Merge pull request #1942 from blair/pip-virtualenv-add-system-package-support
...
library/pip: add support for virtualenv's --system-site-packages.
12 years ago
Brian Coca
0726933a5a
added thirsty option to copy
...
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
12 years ago
Michael DeHaan
a9162a86f2
Very basic --diff option for showing what happens when templates change.
...
Probably output is not useful if not used with --limit
Works well with --check mode
12 years ago
Michael DeHaan
3d6993221e
service status 4 should also be stopped
12 years ago
Stanis Trendelenburg
8f70883541
Handle 'groups=' (empty string) in user module (Linux)
...
Makes it possible to remove a user from all but the primary group.
Setting 'groups=' is the equivalent to passing '-G ""' to
useradd/usermod, which is interpreted as "no group" on Linux.
12 years ago
Michael DeHaan
9113c01e37
Merge pull request #1990 from roller/devel
...
Specify repo option with hg pull
12 years ago
Daniel Hokka Zakrisson
7a49230e85
Merge pull request #2005 from ftao/supervisorctl-update
...
always restart the program when state=restarted
12 years ago
ftao
9174c52b1d
always restart the program when state=restarted
12 years ago
Daniel Hokka Zakrisson
b0932e1638
Merge pull request #1999 from dorfsmay/pullreq-lineinfile
...
Clarification on how to use insertafter with a regex.
12 years ago
Remy
ad7807fce4
Added DPKG options which lardcanoe suggested
12 years ago
Daniel Hokka Zakrisson
dab31116b3
Actually add stdout data to stdout buffer for daemon mode
12 years ago
Yves Dorfsman
05a3876dc9
Clarification on how to use insertafter with a regex.
12 years ago
Blair Zajac
106fb10dab
library/pip: add support for virtualenv's --system-site-packages.
12 years ago
Joel Roller
ac716ac9ca
Specify repo option with hg pull
...
Fixes #1989
12 years ago
Lester Wade
093a876a57
Added capability to enable CloudWatch monitoring when launching.
12 years ago
Remy
26310f411c
Added check so that upgrade cannot be used with other options.
12 years ago
Michael DeHaan
fed82c2188
This implements a basic --check mode which for now is only implemented on template & copy operations. More detail will be shared with the list
...
shortly.
12 years ago
Daniel Hokka Zakrisson
28cf95e585
Use module.get_bin_path for pkgin module instead of hardcoding paths
12 years ago
Remy
fd59a03193
Added version flag (1.1) to updated
...
apt module.
12 years ago
Michael DeHaan
dc5c430f45
Merge pull request #1970 from piffey/devel
...
Devel
12 years ago
Daniel Hokka Zakrisson
c1e0f0b4db
sysctl was added in 1.0
...
Fixes #1972 .
12 years ago
Remy
31db1e31d4
Added apt-get upgrade and dist-upgrade option
12 years ago
Piffey Parlance
0f44ba5a5a
* Minor removal of some dumb I did.
12 years ago
Piffey Parlance
39c8becfc8
* Added support for multi-line key files.
12 years ago
Michael DeHaan
42daffdb38
Merge pull request #1948 from yeukhon/devel
...
hg module cleaned up
12 years ago
Michael DeHaan
602656f02c
Merge pull request #1961 from skvidal/yum-mod
...
Yum mod
12 years ago
Seth Vidal
808554dee6
use a local copy of repoq so we don't inadvertently pollute the one for is_installed
12 years ago
Seth Vidal
1c067845f2
don't apply enablerepo's to is_installed() to work around yum-utils/repoquery drift from all things
...
good and proper
12 years ago
Lorin Hochstein
4d38c68489
If ec2 fact has ':' or '-', change to '_'
...
Change ec2 fact names with colons (:) or dashes (:) to undescore (_)
so that they can be used in templates.
Note that this makes copies instead of replacing the exisitng fact
names to avoid breaking existing playbooks.
12 years ago
Seth Vidal
5c26805ee7
test the repos in enablerepo/disablerepo and error out if they are broken
12 years ago
Elliott Foster
a1ea366957
Adding mongodb_user module.
12 years ago
Yeukhon Wong
cc6fc149c2
Merge remote-tracking branch 'upstream/devel' into devel
12 years ago
Yeukhon Wong
980ffde192
Changes is now determined by simply comparing before,after and cleaned (purge and/or force). Doc is updated.
12 years ago
Yeukhon Wong
ccc903216b
Use %s instead of .format for string replacement. Revisied the documentation.
12 years ago
Yeukhon Wong
99a8e95c98
Rewrote hg module based on feedback.
...
1. state option is removed
2. force is hg update -C
3. purge is hg clean/hg purge but default to no
4. relies on hg abililty to handle errors
12 years ago
Daniel Hokka Zakrisson
0243b7be7c
Fix get_url to work on Python 2.4
12 years ago
diefans
65d0eb9621
proper bin path now called
12 years ago
Yeukhon Wong
92fd1c6578
Merge remote-tracking branch 'upstream/devel' into devel
...
Conflicts:
library/hg
12 years ago
Michael DeHaan
4d8f3b0924
This standardizes the apt_key module some
...
* improves error handling and reporting
* uses run_command to reduce code
* fails quicker on errors as opposed to return codes and tracebacks
* can now also specify the key as data versus needing to wget it from a file
12 years ago
Daniel Hokka Zakrisson
0bfec51a04
Remove last remnants of daisychaining
12 years ago
Daniel Hokka Zakrisson
133874a577
Fix module.run_command usage in fireball
12 years ago
Les Aker
819da94ced
adjusted assemble to use new file attribute handling
12 years ago
Michael DeHaan
12403abc2c
Merge pull request #1924 from blair/consistly-use-underscores
...
library/apt: consistently use underscores in examples.
12 years ago
Blair Zajac
811c711328
library/apt: consistently use underscores in examples.
...
To be consistent with the table showing available options, use
underscores in the example tasks, not hyphens, as the table doesn't
list hyphenated versions of option names, so it looks like the
examples could have typos in them.
12 years ago
Michael DeHaan
b749af0b10
New changelog additions from today's merging
12 years ago
Michael DeHaan
25f52d79d1
Tweak sysctl docs so they'll web-render
12 years ago
Michael DeHaan
e9d5cf3bc2
Fix documentation YAML for pkgin module
12 years ago
Michael DeHaan
970ae584c9
fix documentation formatting for get_url
12 years ago
Michael DeHaan
36066d8664
Fixup ec2_facts docs parsing
12 years ago
Michael DeHaan
5e4d29565c
Standardize the hg command execution around our run command function.
12 years ago
Lester Wade
2da3a54e29
Update library/ec2
...
updated indentation and redundant comment.
12 years ago
Yeukhon Wong
e5b64b2f74
Added hg module to the core.
12 years ago
Lester Wade
de833b3ae0
Update library/ec2
...
bumping up min_count value.
12 years ago
Lester Wade
b0ecfbb26d
Update library/ec2
...
I've uncommented and added a very little supporting stuff based on skvidal's work to allow us to launch more than one instance.
12 years ago
igor
005f864068
minor doc changes
12 years ago
igor
d683c2431e
add support for user:password syntax in urls to get_url
12 years ago
Michael DeHaan
634d59c97f
Merge pull request #1913 from jlitola/apt_key
...
Fixed apt_key's add_key stalling indefinitely, and test code leaking into production
12 years ago
Michael DeHaan
c55a822c1e
Merge pull request #1906 from szinck/devel
...
Add basic pkgin package management
12 years ago
Michael DeHaan
e0b5c35033
Merge pull request #1891 from silviud/ec2_facts_module
...
ec2 facts module - registers to ansible_facts key
12 years ago
Yeukhon Wong
7b0a3c3f2d
Added hg module to the core.
12 years ago
Lorin Hochstein
c337b64e35
Git module: fix for relative paths
...
If a relative path is passed as an argument, this change first
converts it to an absolute path.
This fixes a bug where the git module would attempt to chdir into an
invalid directory because of multiple chdir calls against a relative
path.
12 years ago
Shaun Zinck
b2aed1a4ba
pkgin: add stdout to error message when shell commands fail
12 years ago
Shaun Zinck
e9ca960558
pkgin: use module.run_command to run stuff
...
This also fixes an issue where some console output for packages I was
installing was creating invalid JSON because it contained single-quotes.
12 years ago
Daniel Hokka Zakrisson
6e0cb14ba5
Merge pull request #1911 from tgerla/devel
...
Port ec2 module to Boto
12 years ago
Juha Litola
2796603c92
Removed apt_key tests, as they didn't test the real functionality.
...
Tests used heavily mocked version of the apt_key code, which meant that
it didn't properly test real life scenario.
12 years ago
Daniel Hokka Zakrisson
9f6f15f770
Fix unparseable documentation strings
...
Fixes #1902 .
12 years ago
Juha Litola
05f5b5b279
Fixed add_key stalling indefinitely, and test code leaking into production setting
12 years ago
Shaun Zinck
e34eaa423d
pkgin: change install/remove to not use return code of pkgin
...
pkgin always returns 0 so can't be used to tell if the install or remove
worked. Instead this just queries the installed packages after
performing an operation.
12 years ago
Silviu Dicu
2a893ab0bb
ec2 facts module - updated as per comments
12 years ago
Stephen Fromm
e0741e7810
Update apt_repository to query if repo is already configured
...
This adds two dependencies to the apt_repository module: apt and
apt_pkg. These come from the package python-apt. This is used to parse
the host's sources.list and examine whether the repo is already
configured. This then eliminates the unnecessary
'add-apt-repository --remove' from running.
12 years ago
Shaun Zinck
4a9201ad65
add pkgin to list of package managers in setup
12 years ago
Shaun Zinck
2eedec777f
added first version of pkgin, just does install, remove (for SmartOS)
12 years ago
Brendan Taylor
f18446e7a5
service module 'state' parameter comments should be processed by RST
12 years ago
John Gosset
54ef6015f6
add pacman to list of package managers in setup module
12 years ago
Silviu Dicu
ce9e9af6a3
ec2 facts moduled - updated
12 years ago
Tim Gerla
cafb717b55
Fail gracefully if boto is not available and add me to the author line.
12 years ago
Tim Gerla
139aee58e2
use connect_ec2_endpoint instead of connect_euca, and properly pass keys to connect_ec2
12 years ago
Silviu Dicu
1ab9bfa7cc
ec2 module - registers to ansible_facts key
12 years ago
Tim Gerla
456e6f5a55
library/ec2:
...
- use boto instead of euca2ools
- improve error handling/propagation for run failures
- rename keypair to key_name (and preserve alias for old playbooks)
- should be 100% backward compatible with the euca2ools version
12 years ago
Daniel Hokka Zakrisson
d4c0180494
Make service module daemonize for all the broken "daemons" out there
12 years ago
Daniel Hokka Zakrisson
48f48e8a44
module must be passed to repolist too
12 years ago
Pepe Barbe
8b4bd2ec3e
module needs to be passed to local_nvra
12 years ago
Michael DeHaan
e7223760c4
Merge pull request #1810 from davixx/sysctl
...
new module: sysctl to handle sysctl entry
12 years ago
Michael DeHaan
c66d3200f8
Merge pull request #1670 from Afterburn/devel
...
Pacman module
12 years ago
Michael DeHaan
1721357a49
Merge pull request #1824 from jvantuyl/apt-key-module
...
add apt_key module
12 years ago
Michael DeHaan
fa953ba6b3
Merge pull request #1867 from c0rner/devel
...
get_service_status() is now using self.service_control() to check status
12 years ago
Rune Kaagaard
27ab2e55d3
Service mod.: Proper(?) handling of return code 69
...
This adds "69" to the return codes from the status command that should be
considered as not running. At least "django-celery" uses this return code,
maybe others::
/venv/bin/python /code/project/manage.py celeryctl status
echo $? # 69 when not running.
A bit of googling let me to http://tldp.org/LDP/abs/html/exitcodes.html and
on a Ubuntu Server 12.10 I get::
~# cat /usr/include/sysexits.h | grep 69
#define EX_UNAVAILABLE 69 /* service unavailable */
I'm not sure if the content of sysexits.h is the same on other OS'es.
12 years ago
Jayson Vantuyl
ad6373430b
add apt_key module
...
Pretty straightforward. Give it a URL with an exported GPG key for signing an
Apt repository. It downloads it and will install it using apt-key. It's even
smart enough to tell if it's already there (i.e. actually tells you if it
changed or not).
12 years ago
root
471ee0c90d
get_service_status() is now using self.service_control() to check status
...
Fixes a bug where init-scripts were not used
12 years ago
Stephen Fromm
4eaee3df0a
Various cleanup to run_command
...
* Rename fail_on_rc_non_zero to check_rc, much more succinct.
* Simplify method defintion
* Fix command module and drop shell=shell option; whether to use
shell is determined by if args is a list.
12 years ago
Stephen Fromm
3fb21a5281
Update modules to use run_command in module_common.py
...
This updates apt, apt_repository, command, cron, easy_install, facter,
fireball, git, group, mount, ohai, pip, service, setup, subversion,
supervisorctl, svr4pkg, user, and yum to take advantage of run_command
in module_common.py.
12 years ago
Daniel Hokka Zakrisson
a19a13ffa7
Add check for multiple keys in one invocation
12 years ago
Gert Goet
f4dcb33ccc
Prevent permission denied when cloning
...
Without read permission to the current working directory, git-clone will
fail:
root@host:~$ sudo -u git -H git clone \
git://github.com/ansible/ansible.git /home/git/ansible
fatal: Could not change back to '/root': Permission denied
This commit ensures that the working directory is changed to the
parent-folder of the destination before doing the clone.
12 years ago
Michael DeHaan
1cbc9569b3
Merge pull request #1853 from jure/more_info_from_ec2
...
EC2 module should report back the public_dns_name too
12 years ago
Daniel Hokka Zakrisson
060266e291
Python 2.4 fixes for modules
12 years ago
Daniel Hokka Zakrisson
3bc6228b97
Handle unreadable /proc/xen/capabilities
...
Fixes #1854 .
12 years ago
Jure Triglav
3f43ede70c
Fix indentation
12 years ago
Jure Triglav
2ee05f0c96
EC2 module should report back the public_dns_name too.
12 years ago
Daniel Hokka Zakrisson
b57b1f4cbe
Correct name is login_user
...
Fixes #1848 .
12 years ago
Daniel Hokka Zakrisson
4955587d8c
Merge pull request #1798 from dagwieers/raw-executable
...
Allow to change executable (shell/interpreter) when using raw
12 years ago
Michael DeHaan
713ce4c0cf
Merge pull request #1832 from legrostdg/devel
...
add encoding documentation in postgresql_db
12 years ago
Félix Sipma
0ba7cf58e9
add encoding documentation in postgresql_db
12 years ago
willthames
4e50478a05
Fix behaviour when file handles a path with tilde
...
Two problems here
* unchecked exception handling and erroneous assumption as to why
an exception might fire
* although the file module expands the path, when using file_args
the unexpanded path is passed.
Expected result: ~/path/to/file should work fine
Actual result: exception is because it doesn't find file with a message
about not being able to get the selinux context
12 years ago
Daniel Hokka Zakrisson
1fa83fa584
Merge pull request #1813 from legrostdg/devel
...
postgresql_db fails with owner containing a "-"
12 years ago
Félix Sipma
02f531c609
remove quotes in has_table_privilege and has_database_privilege
12 years ago
Daniel Hokka Zakrisson
451868630d
Merge pull request #1817 from chrisberkhout/devel
...
git module documentation: removed incorrect use of term 'remote branch' ...
12 years ago
davixx
8efa62b0ea
new module: sysctl to handle sysctl entry
...
sysctl now capable to search for sys entry into /sys if not under /proc/sys
module/sysctl rolling back to 0.5
write sysctl.conf safely, tempfile first, atomic replace after.
See comments in https://github.com/ansible/ansible/pull/1810
Patch to replace .format with % () to handle python-2.4 ,
See also https://github.com/ansible/ansible/pull/1810
using name instead key for default arg name. key putted as alias.
also, val become an alias of value arg name.
See also : https://github.com/ansible/ansible/pull/1810
12 years ago
Félix Sipma
8a262c2b20
add documentation for "template" parameter in postgresql_db
12 years ago
Félix Sipma
cd7fe9875c
use double-quotes in postgresql commands (fix bug with "-")
12 years ago
willthames
411b2bf7d9
Added additional template variables
...
Added two additional template variables
* template_fullpath - absolute path to the template
* template_run_date - date that the template was rendered
Documented these additional variables in the module documentation
12 years ago
Chris Berkhout
c01bc23f63
git module documentation: removed incorrect use of term 'remote branch' (should just be 'remote').
12 years ago
Dag Wieers
eb36ff45b9
Make script module use raw module so it does not require python
12 years ago
Dag Wieers
846161a1a4
Allow to change executable (shell/interpreter) when using raw
...
This patch adds an optional 'executable=' option to the raw command line to override the default shell (/bin/sh), much like the shell module does.
12 years ago
Michael DeHaan
3d3deb9797
Merge pull request #1795 from dagwieers/raw-enhanced
...
Add return code and error output to raw module
12 years ago
Dag Wieers
988db558b3
Add return code and error output to raw module
...
Since we use 'raw' heavily on equipment where 'command' and 'shell' are not (yet) working (and python may need to be installed first using raw) these improvements are necessary in order to write more complex scripts (with return code handling and separated stdout/stderr).
This change includes the following changes:
- exec_command() now returns the return code of the command
- _low_level_exec_command() now returns a dict, including 'rc', 'stdout' and 'stderr'
- all users of the above interfaces have been improved to make use of the above changes
- all connection plugins have been modified to return rc and stderr
- fix the newline problem (stdout and stderr would have excess newlines)
In a future commit I intend to add assertions or error handling code to verify the return code in those places where it wasn't done. Since only the output was available, the return code was ignored, even though we expect them to be 0.
12 years ago
Jan-Piet Mens
85e0017a85
fix cron DOCUMENTATION
12 years ago
jkleint
d732b25828
Clarify that lineinfile uses Python regexes.
12 years ago
Daniel Hokka Zakrisson
eb57c9c430
Indicate the reboot option was added in 1.0
...
Fixes #1787 .
12 years ago
Michael DeHaan
6fc6c37401
Merge pull request #1785 from TutoringAustralasia/devel
...
Add support for @reboot to cron module
12 years ago
Chelsea Robb
96e2805b31
Change check for date/time parts being set
12 years ago
Chelsea Robb
6a02e3d918
Added error message when reboot and extra params are passed, and added better boolean parsing on reboot
12 years ago
Chelsea Robb
fc4ac70342
Add support for @reboot to cron module
12 years ago
Gregory Duchatelet
29f985aa2e
do not conditionalize this for older Python, fix indentation, better use
...
of hash iteration.
12 years ago
Gregory Duchatelet
e64de2ff88
Bugfix: in hosts with python-2.5, hash keys needs flatten string.
12 years ago
afterburn
a6f01dcd6f
version 1.0 eruption
12 years ago
afterburn
0bdd17ff3a
updated description and examples
12 years ago