Created
February 5, 2013 16:21
-
-
Save yeukhon/4715522 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## What machine is your central manager? | |
#CONDOR_HOST = $(FULL_HOSTNAME) | |
CONDOR_HOST = 10.0.2.15 | |
## Pool's short description | |
COLLECTOR_NAME = Condor Master at $(FULL_HOSTNAME) | |
## When is this machine willing to start a job? | |
START = TRUE | |
## When to suspend a job? | |
SUSPEND = FALSE | |
CONDOR_ADMIN = root@precise32 | |
## When to nicely stop a job? | |
## (as opposed to killing it instantaneously) | |
UID_DOMAIN = 10.0.2.15 | |
PREEMPT = FALSE | |
## When to instantaneously kill a preempting job | |
## (e.g. if a job is in the pre-empting stage for too long) | |
KILL = FALSE | |
## This macro determines what daemons the condor_master will start and keep its watchful eyes on. | |
## The list is a comma or space separated list of subsystem names | |
# uncomment the line below to execute jobs locally | |
#DAEMON_LIST = COLLECTOR, MASTER, NEGOTIATOR, SCHEDD, STARTD | |
DAEMON_LIST = COLLECTOR, MASTER, NEGOTIATOR, SCHEDD | |
ALLOW_WRITE = $(FULL_HOSTNAME), $(IP_ADDRESS), slave* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment