From: Michael Hanke <mih@debian.org>
Subject: Create RUN directory upon startup

FHS says that any data in /var/run/ needs to be cleaned on boot. Ubuntu,
for example, has /var/run as tmpfs, hence the init script needs to handle
this.
--- a/src/condor_examples/condor.boot.rpm
+++ b/src/condor_examples/condor.boot.rpm
@@ -390,6 +390,11 @@
   if [ "$CONDOR_RUN" = "" ]; then
     CONDOR_RUN=`get_condor_config_val LOG yes`
   fi
+  # make sure the directory exists and is owned by condor
+  if [ ! -d "$CONDOR_RUN" ]; then
+    mkdir -p "$CONDOR_RUN"
+    chown -R condor:condor "$CONDOR_RUN"
+  fi
   verify_readable_directory "$CONDOR_RUN"
   return 0
 }
