1. 20 Nov, 2014 1 commit
  2. 12 Nov, 2014 1 commit
  3. 10 Nov, 2014 1 commit
  4. 01 Nov, 2014 1 commit
  5. 30 Oct, 2014 5 commits
  6. 27 Oct, 2014 1 commit
  7. 26 Oct, 2014 1 commit
  8. 09 Oct, 2014 2 commits
  9. 16 Sep, 2014 1 commit
  10. 15 Sep, 2014 1 commit
  11. 13 Sep, 2014 1 commit
    • Do not remove local role file if given on the commandline · b9acaccc
      using this (for testing purpose) :
        $ ansible-galaxy install COPYING
        - error: the file downloaded was not a tar.gz
        - COPYING was NOT installed successfully.
        - you can use --ignore-errors to skip failed roles.
      
      this result in COPYING being erased, which is surprising for the user.
      This also prevent erasing requirements.yml if someone use the wrong flag.
      Michael Scherer committed
  12. 09 Sep, 2014 3 commits
  13. 08 Sep, 2014 1 commit
  14. 06 Sep, 2014 1 commit
  15. 05 Sep, 2014 1 commit
  16. 04 Sep, 2014 1 commit
  17. 27 Aug, 2014 1 commit
  18. 26 Aug, 2014 1 commit
  19. 22 Aug, 2014 4 commits
  20. 21 Aug, 2014 10 commits
  21. 20 Aug, 2014 1 commit
    • Restrict ansible-pull to only do scm checkout once · 92f9b74a
      This addresses a bug in ansible-pull where running ansible-pull
      with an existing inventory causes the ansible job that does
      the SCM checkout to run twice - once for localhost and once
      for the fully qualified hostname.
      
      This can cause a race condition, and usually results in one
      of the ansible checkouts failing because one of the scm checkouts
      has its references updated underneath it. Although the SCM checkout
      actually succeeds, ansible fails with non-zero exit status, and
      so ansible-pull does not continue.
      
      Now that localhost is implicit for ansible runs, the ansible
      scm checkout can be done using just localhost as a target.
      Will Thames committed