Commit Graph

4812 Commits (f36e85efbba404a705b0cba419f66139f096d549)
 

Author SHA1 Message Date
Michael DeHaan e2d9e1b5c2 Convert 'hacking' instructions to markdown, add more info. 12 years ago
Michael DeHaan cfe8af493f Since using platform.node, be sure to just return the hostname component. 12 years ago
Michael DeHaan 6e1514e975 Merge pull request #2727 from dsedivec/devel
Don't send unicode instances to the selinux module
12 years ago
Michael DeHaan 5b44c3d52c Merge commit '53ac0bb' into devel 12 years ago
Michael DeHaan 87788b1d17 Ignore inventory config files when using an inventory directory. 12 years ago
Michael DeHaan 58d72b28c5 Fixup authorized key documentation formatting 12 years ago
Michael DeHaan adac8f5312 Showcase the new-style lookup plugin access in the authorized_key docs rather than the old-style $FILE 12 years ago
Michael DeHaan 53ac0bbec2 Instantiate callback plugins only once so we can set play/task objects on them and they'll stick. 12 years ago
Dale Sedivec c8f4a56cad Don't send unicode instances to the selinux module
This fixes #2632.  Briefly: specifying things like paths using complex
args in a playbook will make the objects unicode instances.  The selinux
module does not accept unicode instances for its char * arguments; it
wants str instances.

Per mpdehaan's comment on #2632 I just went ahead and converted all
paths to UTF-8.  I don't know if it would be better to do something like
converting to locale.getpreferredencoding(), but I factored all the
conversions out into new method _to_filesystem_str, so there's only one
place that needs to be changed in the future.
12 years ago
Michael DeHaan df93d7dd97 Ignore inventory config files when using an inventory directory. 12 years ago
Michael DeHaan 66afe13346 Merge pull request #2725 from jtsoi/patch-1
Typo in example, extra space breaks playbook.
12 years ago
jtsoi 8c11624f14 Typo in example, extra space breaks playbook. 12 years ago
Michael DeHaan 8e7dc3c79c Remove an extra space in the module execution line if no environment was set. 12 years ago
Michael DeHaan 5656817776 Fixup authorized key documentation formatting 12 years ago
Michael DeHaan cd0602889d Showcase the new-style lookup plugin access in the authorized_key docs rather than the old-style $FILE 12 years ago
Michael DeHaan 0f86b26823 Merge pull request #2720 from base10/devel
Small spelling correction to authorized_key module docs
12 years ago
Nathan L. Walls e8f46822e5 Small spelling correction to authorized_key module docs 12 years ago
Dag Wieers b13beb3689 New module 'set_fact' to define host facts
This module allows you to set host facts (or export play variables to the playbook scope if you fancy that).

The module also accepts complex arguments.

```yaml
 - action: set_fact fact="something" global_fact="${local_var}"'
 - action: set_fact
   args:
      fact: something
      global_fact: ${local_var}
```
12 years ago
Michael DeHaan c35ef43517 Merge pull request #2716 from skvidal/first_found_skip_fix
clean up first_found to fix a few issues:
12 years ago
Seth Vidal 7b8cec3f59 clean up first_found to fix a few issues:
- add a skip option so it won't raise an exception if you don't match anything
 - make it work as a drop-in replacement for first_available_file
 - document in the module comments all of the above cases
12 years ago
Michael DeHaan 5f1e2afc34 Revert "make atomic_replace use shutil.copy2 instead of os.rename() so it will work across filesystems".
AR function was leaving some tmp files behind, want to revert, will have better implementation soon, this is the old way now.

This reverts commit f74a1fa4f0.
12 years ago
Michael DeHaan 3238d0947d Merge pull request #2712 from lwade/devel
correct reference to module
12 years ago
lwade a154a5ddd4 correct reference to module 12 years ago
Michael DeHaan d8bf87b008 (A) include errors in inventory scripts should they occur.
(B) allow registration with ignore_errors: True
12 years ago
Michael DeHaan 6544af9616 Merge pull request #2705 from b6d/utils-fix
Fix if-statement that always evaluates True
12 years ago
Bernhard Weitzhofer fb0a99e5d8 Fix if-statement that always evaluates True 12 years ago
Michael DeHaan a02202eff7 Merge pull request #2701 from chamill/devel
Fix 'sequence' plugin error.
12 years ago
C. Morgan Hamill 88eb5516eb Fix 'sequence' plugin error.
If 'terms' is a string, replace it with a single item list.
12 years ago
Michael DeHaan 40b78f96de Merge pull request #2700 from chamill/devel
Fix errors in lookup plugins.
12 years ago
C. Morgan Hamill 663d37b537 Fix errors in lookup plugins.
Lookup plugins 'sequence' and 'template' now import 'ansible.utils'
appropriately in order to use the 'listify_lookup_plugin_terms'
function.

Also, 'dnstxt' and 'env' now check to see if 'terms' is a string;
without this calls like '{{ lookup('env', 'HOME') }}' fail.
12 years ago
Michael DeHaan cce2cad8dc Fix with_sequence doc error 12 years ago
Michael DeHaan 500b9432a2 Merge pull request #2596 from blair/ec2_facts-provides-ec2-region
ec2_facts: add ansible_ec2_placement_region key/value pair for EC2 regio...
12 years ago
Dale Sedivec 515fd9e915 copy action plug-in check mode respects force=no
The copy action accepts force=no, which tells it not to replace an
existing file even if it differs from the source.  The copy action
plug-in wasn't respecting this option when operated in check mode, so it
would report that changes are necessary in check mode even though copy
would make no changes when run normally.

Runner._remote_md5 was changed to make the logic for setting rc perhaps
a little more clear, and to make sure that rc=0 when the file does not
exist.
12 years ago
Michael DeHaan 6cb6223deb Merge pull request #2608 from lwade/ec2zone
Add availability zone parameter
12 years ago
Michael DeHaan 22e3c389b3 Use platform.node() for the hostname, leave fqdn calculated the same way 12 years ago
Michael DeHaan 6a00513731 Add version added to module docs 12 years ago
Michael DeHaan 7c6341718e Merge branch 'combine_vars' of git://github.com/laggyluke/ansible into exp
Conflicts:
	lib/ansible/inventory/vars_plugins/group_vars.py
	lib/ansible/runner/__init__.py
	lib/ansible/utils/__init__.py
	test/TestPlayBook.py
12 years ago
C. Morgan Hamill 863cb50530 Allow '.yml'/'.yaml' extension on group_vars files.
Look for a file with the base name of the group/host, first without
a file extension, then with a '.yml' extension, and, finally, with
a '.yaml' extension, loading vars from only the first one found.
12 years ago
Michael DeHaan 454076590c Merge pull request #2580 from blair/ec2_vol-improvements
Ec2 vol improvements
12 years ago
Michael DeHaan 6d66b0e965 Merge pull request #2692 from j2sol/rax
Minor fixes to the rax module
12 years ago
Michael DeHaan b54e955595 Remove a debug statement. 12 years ago
Michael DeHaan 86d47bce5f Make more lookup plugins tolerant of new variable system, with a little better 'do what I mean' logic to resolving
what happens if you get a string back as a template result.
12 years ago
Michael DeHaan c0f8af5202 Make more lookup plugins happy with newstyle variables. Not quite done, but this fixes up with_items/with_nested/file/fileglob. 12 years ago
Michael DeHaan f72649d0f9 Merge pull request #2698 from skvidal/atomic_replace_and_cron
Atomic replace and cron
12 years ago
Seth Vidal f74a1fa4f0 make atomic_replace use shutil.copy2 instead of os.rename() so it will
work across filesystems
12 years ago
Seth Vidal 5df2dadcdb clean up how it puts the files in place - in f18 /tmp is tmpfs which
means ln and os.rename() won't work across fs.
12 years ago
Jesse Keating 59d0fb6c95 Only accept supported services for rax module
Even though others are possible, fail early on unsupported ones.
12 years ago
Jesse Keating 55ef1d6e47 Update documentation for rax module
Only list the services supported
Don't put in unncessary required: false
Use better formatting for the example
12 years ago
Michael DeHaan 84fb92dac6 Working on the FAQ. 12 years ago
Michael DeHaan d00f7cea14 Merge pull request #2676 from b6d/postgresql_privs-module-proposal2
Proposal for a module to manage PostgreSQL privileges (2)
12 years ago