######################################################################
##
##  condor_config
##
##  This is the top-level config file read in my the Condor daemons.
##  The sole purpose of this file is to include the right files from
##  the right location in the right order. 
##
##  !!! NEVER MAKE NEW SETTINGS IN THIS FILE !!!
##
##  !!! ONLY CHANGE THIS FILE IF YOU KNOW WHAT YOU'RE DOING !!!
##
##  Machine-specific settings should always be made via the CycleServer
##  interface or using the ABC CLient Control Tool from your desktop.
## 
##  Configuration files are read in the following order. Settings that
##  are read later can override previously read settings:
##
##     1) condor_config.basic
##     2) condor_config.{os}
##     3) condor_config.{site}
##     4) condor_config.{machine}
##     5) cycleserver/{machine}.config
##
##  For help with Condor configuration please contact:
##
##  swttcabca@altera.com
##
######################################################################

##  Shortname of your site (e.g. TO, SJ, SC, PN, UK, VN)
ARC_SITE = sjdev
##  Create a synonym for ARC_SITE that follow a more conventional
##  Class Ad naming convention. We export this in the STARTD ad on
##  every machine.
ARCSite = $(ARC_SITE)

##  Directory at your site that serves the config files, as accessed
##  by the windows clients. Always use "/" as path delimiter.
ALTERA_CONDOR_CONFIG_DIR_WIN = \\sj-arcdev\condor\configs

##  Directory at your site that serves the config files, as accessed
##  by the Linux and Solaris clients. Always use "/" as path delimiter.
ALTERA_CONDOR_CONFIG_DIR_UNIX = /tools/arc/condor

######################################################################
# YOU DON'T WANT TO TOUCH SETTINGS BELOW THIS LINE
######################################################################

ALTERA_CONDOR_CONFIG_DIR_WINNT61 = $(ALTERA_CONDOR_CONFIG_DIR_WIN)
ALTERA_CONDOR_CONFIG_DIR_WINNT60 = $(ALTERA_CONDOR_CONFIG_DIR_WIN)
ALTERA_CONDOR_CONFIG_DIR_WINNT52 = $(ALTERA_CONDOR_CONFIG_DIR_WIN)
ALTERA_CONDOR_CONFIG_DIR_WINNT51 = $(ALTERA_CONDOR_CONFIG_DIR_WIN)
ALTERA_CONDOR_CONFIG_DIR_WINNT50 = $(ALTERA_CONDOR_CONFIG_DIR_WIN)

ALTERA_CONDOR_CONFIG_DIR_LINUX = $(ALTERA_CONDOR_CONFIG_DIR_UNIX)
ALTERA_CONDOR_CONFIG_DIR_SOLARIS29 = $(ALTERA_CONDOR_CONFIG_DIR_UNIX)
ALTERA_CONDOR_CONFIG_DIR_SOLARIS28 = $(ALTERA_CONDOR_CONFIG_DIR_UNIX)
ALTERA_CONDOR_CONFIG_DIR_SOLARIS27 = $(ALTERA_CONDOR_CONFIG_DIR_UNIX)
ALTERA_CONDOR_CONFIG_DIR_SOLARIS26 = $(ALTERA_CONDOR_CONFIG_DIR_UNIX)
ALTERA_CONDOR_CONFIG_DIR_SOLARIS251 = $(ALTERA_CONDOR_CONFIG_DIR_UNIX)
ALTERA_CONDOR_CONFIG_DIR_SOLARIS25 = $(ALTERA_CONDOR_CONFIG_DIR_UNIX)

##  Tells Condor not to error out if any of the files listed
##  in LOCAL_CONFIG_FILE is not readable
REQUIRE_LOCAL_CONFIG_FILE = False

##  List out the config files to be read in. 
LOCAL_CONFIG_FILE	= \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/condor_config.basic, \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/os/condor_config.$(OPSYS), \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/site/condor_config.$(ARC_SITE), \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/machine/condor_config.$(HOSTNAME), \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/machine/condor_config.$(HOSTNAME).$(OPSYS), \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/patch/condor_config.$(HOSTNAME), \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/patch/condor_config.$(HOSTNAME).$(OPSYS), \
   $(ALTERA_CONDOR_CONFIG_DIR_$(OPSYS))/cycleserver/$(HOSTNAME).config
