Commit Graph
17 Commits
Author SHA1 Message Date
Maykel Moya a281643505 Add link (with minor rewording) to jinja2 builtin filters 2014-02-17 12:15:42 +01:00
Maykel Moya cb8f4b8062 Add link to ansible-examples repo 2014-02-17 12:05:53 +01:00
Maykel Moya 5ba0e7477e Fix path to index.html when launching browser 2014-02-17 12:00:41 +01:00
Maykel Moya 95761ea920 Uniform spacing across all filter examples 2014-02-17 11:54:33 +01:00
Maykel Moya 2164573864 Filter name is singular 2014-02-17 11:46:05 +01:00
Maykel Moya 0b1320e48c Update doc, irc and mailing list information in manpages input 2014-02-12 16:02:33 +01:00
Maykel Moya 06beddfe68 Fix documentation url 2014-02-11 16:55:10 +01:00
Maykel Moya 0b44a3e54f Minor grammar fix in manpages 2014-02-11 16:50:10 +01:00
Maykel Moya 0711447d3a Missing "is" in file module description 2013-12-26 12:34:46 +01:00
Maykel Moya 9018d53a3c Fix link to playbooks loops 2013-12-08 22:09:54 +01:00
Maykel Moya bddb1e3115 Add blank line before rst directive 2013-12-03 11:51:44 +01:00
Maykel Moya 3db7ec8356 Fail if requested variable is not available 2013-10-22 09:30:19 +02:00
Maykel Moya e898f30f78 Fix copyright 2013-03-06 02:40:34 +01:00
Maykel Moya ee7f8d018e file module should check invalid arguments (fixes #2135) 2013-03-04 12:55:18 +01:00
Maykel Moya 9a493ef388 Add support for running modules chrooted in a local dir
Adds 'chroot' connection for executing modules chrooted to
a local dir. Requires running ansible as root.

chroot dirs should be specified in the inventory like any
other host.

You can do things like:

$ sudo -E ansible -vvv -f 1 "./chroot1,./chroot2" -c chroot \
  all -m setup
$ sudo -E ansible-playbook -vvv -f 1 -i "./chroot1,./chroot2" \
  -c chroot some-playbook.yml

some-playbook.yml:
---
- hosts: all
  tasks:
    - name: echo something
      shell: echo "Yaaay!" >/tmp/foobar.txt
    - name: install less
      apt: pkg=less state=latest
2013-02-21 00:51:02 +01:00
Maykel Moya 5e68143c46 Check presence of files under /proc before opening them 2013-02-20 20:52:45 +01:00
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.
2013-02-20 20:52:45 +01:00