Path: csiph.com!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'output': 0.04; '(using': 0.07; 'subject:question': 0.08; 'command.': 0.09; 'idea?': 0.09; 'result.': 0.15; 'run:': 0.16; 'uname': 0.16; 'specify': 0.17; 'thanks,': 0.18; 'trying': 0.21; 'machine.': 0.22; 'example': 0.23; 'absolute': 0.23; 'task': 0.23; 'linux': 0.24; 'command': 0.24; 'tried': 0.25; 'executing': 0.27; 'i.e.': 0.27; 'message- id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'run': 0.28; "i'm": 0.29; "skip:' 10": 0.30; 'to:addr:python-list': 0.33; 'hi,': 0.33; 'another': 0.33; 'received:google.com': 0.34; 'path': 0.35; 'remote': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'received:209': 0.37; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'prompt': 0.78; 'fab': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=c9k+9AHY0cZwiFyizGxhPL1VTnHemzcnAtJY+25jzLU=; b=WiMj47/4pmxAgWBxpQNe6tv+oTKthxE+jpdNf5nDKnEGj+i7XjHG06n/0vuLR2zatc Hxi5fBl/SfALdZITx/qkxYmdSEvJveygEY51UHb/sdsgDii4yOed4PXg9pwCE5u2n2Fv 7FQSaRl18ymO3kakhvBQejKACByMmS1s+psDIRIgC2OqhIlDwVL9HDDV95WQCpNVrVv9 lG+tMbqgCF+GKJkV32Od35Hw6huUi8xLuzM/4S6UW4YFBDYC7/S09z/WkpeFvnMfFEyO xOkt+xnRHUkduU6mmPwKssKCLiTFDt4fD2X2gxgMh3vKlTygsOfGxEkTq5cXpch0g6cT PXHg== MIME-Version: 1.0 From: Jabba Laci Date: Fri, 9 Nov 2012 23:25:37 +0100 Subject: fabric question To: Python mailing list Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1352499959 news.xs4all.nl 6929 [2001:888:2000:d::a6]:58534 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33061 Hi, I'm trying to use fabric to run a command on another Linux machine. When I call "fab remote_info" (using the example from its documentation), this is what I get: local$ fab remote_info [remote] Executing task 'remote_info' [remote] run: uname -a [remote] out: remote@path$ That is, it logs in successfully, but I get no output and I get a prompt on the remote machine, i.e. it doesn't log out automatically after calling the remote command. I also tried to specify the absolute path of uname, same result. Any idea? Thanks, Laszlo