## What machine is your central manager?
CONDOR_HOST = nanomia.shore.mbari.org

##  Pathnames:
##  Where have you installed the bin, sbin and lib condor directories?   

RELEASE_DIR = /opt/condor-7.4.2


##  Where is the local condor directory for each host?  
##  This is where the local config file(s), logs and
##  spool/execute directories are located

LOCAL_DIR = /Users/condor/


##  Mail parameters:
##  When something goes wrong with condor at your site, who should get
##  the email?

CONDOR_ADMIN = dcline@mbari.org
EMAIL_DOMAIN = $(FULL_HOSTNAME)

##  Full path to a mail delivery program that understands that "-s"
##  means you want to specify a subject:

MAIL = /usr/bin/mail


##  Network domain parameters:
##  Internet domain of machines sharing a common UID space.  If your
##  machines don't share a common UID space, set it to 
##  UID_DOMAIN = $(FULL_HOSTNAME)
##  to specify that each machine has its own UID space.

UID_DOMAIN = shore.mbari.org

##  Internet domain of machines sharing a common file system.
##  If your machines don't use a network file system, set it to
##  FILESYSTEM_DOMAIN = $(FULL_HOSTNAME)
##  to specify that each machine has its own file system. 

FILESYSTEM_DOMAIN = $(FULL_HOSTNAME)


##  The user/group ID <uid>.<gid> of the "Condor" user. 
##  (this can also be specified in the environment)
##  Note: the CONDOR_IDS setting is ignored on Win32 platforms

CONDOR_IDS = 503.20


##  Condor needs to create a few lock files to synchronize access to
##  various log files.  Because of problems we've had with network
##  filesystems and file locking over the years, we HIGHLY recommend
##  that you put these lock files on a local partition on each
##  machine.  If you don't have your LOCAL_DIR on a local partition,
##  be sure to change this entry.  Whatever user (or group) condor is
##  running as needs to have write access to this directory.  If
##  you're not running as root, this is whatever user you started up
##  the condor_master as.  If you are running as root, and there's a
##  condor account, it's probably condor.  Otherwise, it's whatever
##  you've set in the CONDOR_IDS environment variable.  See the Admin
##  manual for details on this.

LOCK = /tmp/condor-lock.$(HOSTNAME)0.387060857451619


##  condor_master
##  Daemons you want the master to keep running for you:

DAEMON_LIST = MASTER, STARTD

##  Java parameters:
##  If you would like this machine to be able to run Java jobs,
##  then set JAVA to the path of your JVM binary.  If you are not
##  interested in Java, there is no harm in leaving this entry
##  empty or incorrect.

JAVA = /usr/bin/java
JAVA_MAXHEAP_ARGUMENT = -Xmx

#####################################################################
## Custom parameters for EITS
#####################################################################

HOSTALLOW_READ = *.shore.mbari.org
HOSTALLOW_WRITE = *.shore.mbari.org
SOFT_UID_DOMAIN = TRUE
TRUST_UID_DOMAIN = TRUE

# Define this machine as only having quicktime timecode, and ffmpeg support
HAS_QTADDTIMECODE = True
HAS_FFMPEG = True

# Define in the startd
STARTD_EXPRS = HAS_QTADDTIMECODE, HAS_FFMPEG, $(STARTD_EXPRS)
DEFAULT_DOMAIN_NAME = $(UID_DOMAIN)

#############
##  This is a Configuration that will cause your Condor jobs to
##  always run.  This is intended for testing only.
##  These will cause your jobs to start on a machine an will let
##  them run to completion.  Condor will ignore all of what is going
##  on in the machine (load average, keyboard activity, etc.)

TESTINGMODE_WANT_SUSPEND	= False
TESTINGMODE_WANT_VACATE	= False
TESTINGMODE_START		= True
TESTINGMODE_SUSPEND		= False
TESTINGMODE_CONTINUE    = True
TESTINGMODE_PREEMPT		= False
TESTINGMODE_KILL		= False
TESTINGMODE_PERIODIC_CHECKPOINT	= False
TESTINGMODE_PREEMPTION_REQUIREMENTS = False
TESTINGMODE_PREEMPTION_RANK = 0

#############
WANT_SUSPEND 		= $(TESTINGMODE_WANT_SUSPEND) 
WANT_VACATE		= $(TESTINGMODE_WANT_VACATE)
START			= $(TESTINGMODE_START)
SUSPEND			= $(TESTINGMODE_SUSPEND)
CONTINUE		= $(TESTINGMODE_CONTINUE)
PREEMPT			= $(TESTINGMODE_PREEMPT)
KILL			= $(TESTINGMODE_KILL)
 
