1. 23 Dec, 2013 1 commit
  2. 20 Dec, 2013 1 commit
  3. 19 Dec, 2013 10 commits
  4. 18 Dec, 2013 5 commits
  5. 17 Dec, 2013 9 commits
  6. 16 Dec, 2013 8 commits
  7. 15 Dec, 2013 5 commits
  8. 13 Dec, 2013 1 commit
    • import novaclient.exceptions for cs.images.find · 3007a8af
      cs.images.find(human_id= throws novaclient.exceptions.NotFound,
      resulting in the try/except block with
      image = cs.images.find(name=image)  being skipped. catching
      novaclient.exception.NotFound allows images to be specified with the
      human readable name.
      
      Example:
        tasks:
          - name: Server build request
            local_action:
              module: rax
              region: DFW
              image: Ubuntu 12.04 LTS (Precise Pangolin)
      
      Also, the import is placed after try: import pyrax, because pyrax
      imports novaclient and should fail if novaclient is missing.
      Troy C committed