From owner-freebsd-questions@FreeBSD.ORG Tue Jun 12 02:10:23 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4674F106566C for ; Tue, 12 Jun 2012 02:10:23 +0000 (UTC) (envelope-from kudzu@tenebras.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id F2E868FC08 for ; Tue, 12 Jun 2012 02:10:22 +0000 (UTC) Received: by vbmv11 with SMTP id v11so3179252vbm.13 for ; Mon, 11 Jun 2012 19:10:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding:x-gm-message-state; bh=bvFsOONM7dxMUU2BV/ndqnZfAntsyQQXHRMIcEtA8WU=; b=mmEmPeCmMfFtLwFGRYdqeaSIXYUmO9WnykWCtDnKJkWHT1Vnbatgs23N8UcRQyyhJM H0MP48NY4pxCR0RRRWuoCXm2YSougXAjN34OuNJUu0v4cSaGr1798GCNibLHS/tCqd/B eaxtaESCMd/97J0ICMvnSA7MoHTjs8xY/myoQVmJP8YtW8qCoC/OVIvw5gtEGZnSIP2+ 8VX9bNCBN2tbcT/74sTH8H1xfWaB1I/DvzRa2NcyXzYl9RIQgnMVPP+cFUgEL9o3gnri ZovMsrjtPUlIuxci1brWDPAawmxtruXvfbLp0rSzun9vwG3WOBDwXKjRIVJf24fl2YPo cE7A== MIME-Version: 1.0 Received: by 10.52.98.39 with SMTP id ef7mr11349860vdb.131.1339467021304; Mon, 11 Jun 2012 19:10:21 -0700 (PDT) Received: by 10.52.106.166 with HTTP; Mon, 11 Jun 2012 19:10:21 -0700 (PDT) In-Reply-To: References: Date: Mon, 11 Jun 2012 19:10:21 -0700 Message-ID: From: Michael Sierchio To: Walter Hurry Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQnsXR7U7wvuRT8akCvgDQ5oIn1w/4We62J3eWOblxW1nfty29E81CeGgOmXs7SwI/DFW/B8 Cc: freebsd-questions@freebsd.org Subject: Re: Newbie question: Why aren't my cron jobs running? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jun 2012 02:10:23 -0000 On Mon, Jun 11, 2012 at 7:04 PM, Walter Hurry wrote= : > As the subject says, this is probably a newbie question (I am new to > FreeBSD but quite experienced at Linux). > > FreeBSD9 on x86_64. > > Cron is running: > > $ ps -ax|grep cron > > =A01513 =A0?? =A0Is =A0 =A0 0:00.01 /usr/sbin/cron -s > > =A02283 =A0 0 =A0S+ =A0 =A0 0:00.00 grep cron > > $ > > I have a syntactically valid crontab: > > $ crontab -l > #min hr dom month dow command > > SHELL=3D/bin/bash > > PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home= / > daddy/bin > > HOME=3D/home/walterh > > =A000 =A002 * =A0 * =A0 =A0 * =A0 /home/walterh/exports.sh > > =A005 =A002 * =A0 * =A0 =A0 * =A0 /home/walterh/backup_etc.sh > > =A010 =A002 * =A0 * =A0 =A0 * =A0 /home/walterh/systemcheck.sh > > =A015 =A002 * =A0 * =A0 =A0 * =A0 /home/walterh/backup_bsd.sh > > $ > > So what is wrong? Why is nothing happening? I have consulted the handbook > but see nothing. Have you installed bash? It's not in the system base. What's in your shell scripts? - M