Skip site navigation (1)Skip section navigation (2)
Date:      27 Jan 2003 15:44:05 -0900
From:      Jon Reynolds <jonr@destar.net>
To:        FreeBSD Questions List <questions@FreeBSD.ORG>
Subject:   chown and chmod using crontab?
Message-ID:  <1043714644.1895.35.camel@localhost.localdomain>

next in thread | raw e-mail | index | archive | help
I have a directory that 2 different groups have access to. When one
group writes to the folder it retains the permissions of that group. I
need the permissions to change to the permissions of the directory. 

I thought I could add a crontab in and run a little script every 1
minute to set the correct permissions. The script does what it should
when ran by the cmdline but not when I try to run it from the crontab.

Is it not possible to run chmod and chown on a folder by using a
crontab?

The entry into my /etc/crontab file looks like this:

0	*	*	*	root	/bin/fixperms

My fixperms file looks like this:

#!/bin/sh	

chmod -R 777 /usr/local/ServerFiles
chown -R staff /usr/local/ServerFiles

Am I doing this right?

Jon


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1043714644.1895.35.camel>