From owner-freebsd-python@FreeBSD.ORG Wed Jun 10 21:41:32 2015 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06BF2674 for ; Wed, 10 Jun 2015 21:41:32 +0000 (UTC) (envelope-from rsimmons0@gmail.com) Received: from mail-ig0-x235.google.com (mail-ig0-x235.google.com [IPv6:2607:f8b0:4001:c05::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D77971A9C for ; Wed, 10 Jun 2015 21:41:31 +0000 (UTC) (envelope-from rsimmons0@gmail.com) Received: by igbzc4 with SMTP id zc4so45033623igb.0 for ; Wed, 10 Jun 2015 14:41:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=izh/Kgf6A6cO0PYpm2QPBC0ZbzPuX3ZPqu8+kMLLK9Y=; b=ujqtCoxCggSLQvNr1Yf0AREIHnWSZCMnqNt96M39QM6O8uE+tpUhmL/rB6Je7giKZ7 6TTJtHyk2q+A1LJDkwbIVN/7RAPYTXtQatec6BakQc1TuqPu7RE03N1WCIe4wRV8d+Qj Lg/uHEichzN08iSj/zFSJe2wGi8kO40iq3b5mYEMz6/Y9MAEOE9QaA4jHrsF9hzGed6D I+H81Vib9MA2J3+7TU4wKsrF1bCVVjntbLuVVFwNo0T6l0JKSFv6Fbk6Z/suOaVWIVCH FcdZwRV3kh04HnZ9ED2XuX5hnWk90s2rSSFavvTpNSUGUxMX6rff7KTW/4mTOtyM3mHL c3Ww== MIME-Version: 1.0 X-Received: by 10.107.160.141 with SMTP id j135mr7208949ioe.43.1433972491075; Wed, 10 Jun 2015 14:41:31 -0700 (PDT) Received: by 10.64.60.73 with HTTP; Wed, 10 Jun 2015 14:41:31 -0700 (PDT) In-Reply-To: <14ddf64d80d.1020c3e5a171271.8900665107577587389@tech-wolf.net> References: <14ddf64d80d.1020c3e5a171271.8900665107577587389@tech-wolf.net> Date: Wed, 10 Jun 2015 17:41:31 -0400 Message-ID: Subject: Re: Re: Python Subprocess Crontab Problem From: Robert Simmons To: freebsd-python@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2015 21:41:32 -0000 On Wed, Jun 10, 2015 at 5:33 PM, Chris Wojo wrote: > crontab isn't using a PATH for your specified user, so you need to give an > absolute path. This is the fix. Thanks everyone!