Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Tue, 5 Mar 2002 14:17:45 -0500 (EST) From: Michael Adler To: Corinna Vinschen Subject: Re: cron problem In-Reply-To: <20020305100106.L13590@cygbert.vinschen.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Tue, 5 Mar 2002, Corinna Vinschen wrote: > On Thu, Feb 28, 2002 at 10:49:51AM -0500, Michael Adler wrote: > > What I think should really happen is that cron should create those > > directories during installation so they are owned by whoever installed > > cygwin. > > Would you mind to help out and create an install script for > /etc/postinstall? I thought you could just inlude empty directories when you make the tar ball. This worked for me too. ############################ #!/bin/bash if [ -d /var/cron/tabs ] ; then echo "/var/cron/tabs already exists" else echo "creating /var/cron/tabs" mkdir -p /var/cron/tabs fi -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/