1. 17 Jun, 2013 1 commit
  2. 15 Jun, 2013 1 commit
  3. 01 Jun, 2013 1 commit
  4. 29 Apr, 2013 1 commit
  5. 28 Apr, 2013 1 commit
  6. 18 Apr, 2013 1 commit
    • New module 'set_fact' to define host facts · b13beb36
      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}
      ```
      Dag Wieers committed