fab-classic icon indicating copy to clipboard operation
fab-classic copied to clipboard

Simple, Pythonic remote execution - Fork of Fabric 1.x

Results 11 fab-classic issues
Sort by recently updated
recently updated
newest added

attempt to fix #27 (but probably only works for basic cases)

wip

Hi, First of all, thanks for the fork and for the work done! We're migrating from `Fabric3==1.14.post1` to `fab-classic`. Both packages have the same problem: `parallel` doesn't work with Python...

Using `select()` here causes a file descriptor leak. We've replaced this with a `poll()` implementation to avoid this. The polling object needs to be opened with an eventmask that stops...

This addresses issue #51 multiprocessing.Process instances hold pipes open until their .close() method has been called, even if the child process has exited. Manually grabbing the data from them on...

This PR makes two small changes to the `req_py3` branch: ### [Implement nested using contextmanager](https://github.com/ploxiln/fab-classic/commit/d457d9c20698f7b8355dd2ef644632c8921d52d5) A reimplementation of nested for Python 3 from 43cdd22, using the already imported contextmanager from...

port of https://github.com/fabric/fabric/commit/c22a34942f

Like this: [https://stackoverflow.com/a/19536667](https://stackoverflow.com/a/19536667) [https://stackoverflow.com/a/21138900](https://stackoverflow.com/a/21138900) Can automatically convert bool argument in fabric

enhancement

remove dependency on "six" remove python-2.7 and python-3.4 from test matrix remove last couple of "from __future__ import with_statement" (The time has finally come. I'll leave this un-merged for a...

Easy to reproduce. Just run a fabric task across 1024+ hosts on. The per process file descriptor will trigger and the first place fab-classic breaks is on this select: ```...

I recently upgraded Ubuntu and fab-classic versions, and now old code that used to work is failing because Fabric is now demanding a password when none is required. chris@localhost:~$ ssh...