Hello,
There is another solution that takes more time and code but I use it when
need something clean :
- execute your code with that :
from fabric.context_managers import hide
def myjob():
*with hide('everything'):*
> your code
- use the *open *python* *builtin with append mode ('a') to write whatever
you want to a file
- you'll also probably wanted to use *env.warn_only=True *so you'll be able
to catch errors with *return_code* property :
> result = run("my command")
> if result.return_code == 0:
> something
> else:
> something
Nicolas
2012/1/25 Jeff Forcier <[email protected]>
> On Wed, Jan 25, 2012 at 10:24 AM, Chris Withers <[email protected]>
> wrote:
>
> > - when does fabric write to stderr versus stdout?
>
> It tries to be "Unix-y", so normal information like "Running task 'x'"
> and such goes to stdout; errors/aborts/tracebacks should go to stderr;
> remote stdout/stderr are sent to the appropriate local stream; etc.
>
> > - what happens with password prompts and the like?
>
> Those won't work well when redirecting, no, so you'd have to ensure
> your task(s) can be run noninteractively by setting Fab env vars like
> env.password, using ssh keys, those sorts of things.
>
> -Jeff
>
> >
> >
> > cheers,
> >
> > Chris
> >
> > --
> > Simplistix - Content Management, Batch Processing & Python Consulting
> > - http://www.simplistix.co.uk
> >
> > _______________________________________________
> > Fab-user mailing list
> > [email protected]
> > https://lists.nongnu.org/mailman/listinfo/fab-user
>
>
>
> --
> Jeff Forcier
> Unix sysadmin; Python/Ruby engineer
> http://bitprophet.org
>
> _______________________________________________
> Fab-user mailing list
> [email protected]
> https://lists.nongnu.org/mailman/listinfo/fab-user
>
--
Nicolas MICHEL
_______________________________________________
Fab-user mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/fab-user