*** Attention: This is an external email. Use caution responding, opening attachments or clicking on links. ***
I made a dumb decision years ago by making our network-wide condor uid 999 back on Ubuntu 18. Ubuntu20 and Ubuntu24 use this ID for system services, so it’s all very confusing. [Service] ExecStartPre=/usr/sbin/nmrbox-condor-prestart.sh ACCOUNT=ltscondor /usr/bin/id $ACCOUNT > /dev/null if [ $? -ne 0 ]; then echo "Condor account $ACCOUNT does not exist" >&2 exit 1 fi 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
|