[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [HTCondor-users] feature request for CONDOR_IDS



On 2/11/25 09:01, Weatherby,Gerard wrote:

DIRS=( "/var/log/condor" "/var/lib/condor" "/var/spool/condor" "/var/lock/condor" "/var/run/condor")

for DIR in "${DIRS[@]}"; do
     mkdir -p "$DIR"
     chown $ACCOUNT $DIR
done

While this works, given that the condor.service is running as root, it seems like it should be able to handle the directory permissions without my help.

It may be a chicken-and-egg problem for the distros that put /var/run and /var/lock on tmpfs & they don't exist when condor starts and tries to place its pid/lock files in there?

Dmitri