Skip to content

Commits

Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Jun 2, 2009

  1. Update upload_template to correctly handle backing up target director…

    …ies.
    
    This is related to the previous change to this function earlier today.
    bitprophet committed Jun 2, 2009
    Copy the full SHA
    e989277 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    3c6f12b View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    9557904 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    e8cda7e View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    040cad0 View commit details
    Browse the repository at this point in the history
  6. contrib.files.append may now take a list of strings if desired.

    Also shuffles around where the warn/hide with statement is used (should really
    have been inside contains() to begin with) and updated to work correctly with
    "empty" append lines -- i.e. one may use append to tack on whitespace lines if
    desired.
    bitprophet committed Jun 2, 2009
    Copy the full SHA
    e30b027 View commit details
    Browse the repository at this point in the history
  7. Update upload_template docstring, and back out some recent changes.

    For some dumb reason I had updated the behavior of upload_template so that it
    no longer worked as advertised. In retrospect it really should work as
    advertised, namely that the "destination" string is given verbatim to the call
    to "cp".
    
    This gives more power to the user, and the user may explicitly tack on
    a trailing slash if they want "cp" to copy a file into a folder, as normal.
    bitprophet committed Jun 2, 2009
    Copy the full SHA
    632d389 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2009

  1. Handle exceptions with strerror attributes that are None instead of s…

    …trings.
    
    Thanks to Evan Jones for the catch.
    bitprophet committed May 25, 2009
    Copy the full SHA
    c7d4d19 View commit details
    Browse the repository at this point in the history
  2. Minor cleanup to package init and setup.py.

    Tested with fresh virtualenvs doing setup.py install|develop|build. Seems to
    work OK in all of them.
    bitprophet committed May 25, 2009
    Copy the full SHA
    f0cacfb View commit details
    Browse the repository at this point in the history

Commits on May 24, 2009

  1. TODO tweaks

    bitprophet committed May 24, 2009
    Copy the full SHA
    2b77133 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    5059ac1 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    21a5bfb View commit details
    Browse the repository at this point in the history
  4. Cut 0.9 alpha 3

    bitprophet committed May 24, 2009
    Copy the full SHA
    aead62e View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    91dc5b5 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    904eb1d View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    c113163 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    a53f867 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    ebe5de6 View commit details
    Browse the repository at this point in the history
  10. Add basic tests for utils

    Signed-off-by: Jeff Forcier <jeff@bitprophet.org>
    Peter Ellis authored and bitprophet committed May 24, 2009
    Copy the full SHA
    d958048 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    b2e9fb7 View commit details
    Browse the repository at this point in the history
  12. Add very basic tests for denormalise

    Fix bug where missing username/port threw exceptions
    
    Signed-off-by: Jeff Forcier <jeff@bitprophet.org>
    Peter Ellis authored and bitprophet committed May 24, 2009
    Copy the full SHA
    1fd03b1 View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    4827cac View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    534fc9f View commit details
    Browse the repository at this point in the history
  15. Make private key passphrase prompting more obvious to users.

    Paramiko doesn't actually prompt for encrypted private keys, and also does some
    silly argument overriding. End result is that non-agent-loaded private keys
    *do* already work with our current logic, but we needed to detect what's going
    on so we can clue the users in as to what password is being asked for.
    bitprophet committed May 24, 2009
    Copy the full SHA
    19d93c2 View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    a712841 View commit details
    Browse the repository at this point in the history
  17. Minor update to _AttributeDict __getattr__, thanks to Jorge Vargas.

    Only behavioral change is that raised AttributeErrors are more descriptive.
    Also provides small performance benefit due to not accessing dict twice.
    bitprophet committed May 24, 2009
    Copy the full SHA
    f282856 View commit details
    Browse the repository at this point in the history
  18. Use Paramiko sftp convenience function to expand tildes.

    Less hacky and more platform-agnostic.
    
    Signed-off-by: Jeff Forcier <jeff@bitprophet.org>
    alisaifee authored and bitprophet committed May 24, 2009
    Copy the full SHA
    37a4d44 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2009

  1. Copy the full SHA
    15df528 View commit details
    Browse the repository at this point in the history
  2. Overestimated Paramiko's exception handling, sigh. Password auth work…

    …ing again.
    
    Tested both ssh-agent and password authentication and both appear to work
    correctly now.
    bitprophet committed May 21, 2009
    Copy the full SHA
    fac670a View commit details
    Browse the repository at this point in the history

Commits on May 18, 2009

  1. Copy the full SHA
    77c8a8d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    d5f413e View commit details
    Browse the repository at this point in the history

Commits on May 16, 2009

  1. Copy the full SHA
    edfb636 View commit details
    Browse the repository at this point in the history
  2. Set the roledefs for testing the role decorators

    Signed-off-by: Jeff Forcier <jeff@bitprophet.org>
    Peter Ellis authored and bitprophet committed May 16, 2009
    Copy the full SHA
    9e0ede4 View commit details
    Browse the repository at this point in the history
  3. Fix tests for new method signature of get_hosts

    Signed-off-by: Jeff Forcier <jeff@bitprophet.org>
    Peter Ellis authored and bitprophet committed May 16, 2009
    Copy the full SHA
    d48ebd8 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    64aff05 View commit details
    Browse the repository at this point in the history
Older