The | at the end is necessary an correct when you are using a URL as your local config. The | at the end tells HTCondor that this is a command to run rather than a list of files to open.
-tj From: HTCondor-users [mailto:htcondor-users-bounces@xxxxxxxxxxx]
On Behalf Of Stub Hi, I use the Unattended installation procedure for Windows 7, as follows: set ARGS= set ARGS=NEWPOOL="N" set ARGS=%ARGS% POOLNAME="Library" set ARGS=%ARGS% RUNJOBS="C" set ARGS=%ARGS% VACATEJOBS="Y" set ARGS=%ARGS% SUBMITJOBS="N" set ARGS=%ARGS% CONDOREMAIL="" set ARGS=%ARGS% SMTPSERVER="" set ARGS=%ARGS% HOSTALLOWREAD="25.245.0.0/16" set ARGS=%ARGS% HOSTALLOWWRITE="25.245.0.0/16" set ARGS=%ARGS% HOSTALLOWADMINISTRATOR="condor.mynet.edu" set ARGS=%ARGS% INSTALLDIR="C:\condor" set ARGS=%ARGS% POOLHOSTNAME="condor.mynet.edu" set ARGS=%ARGS% ACCOUNTINGDOMAIN="none" set ARGS=%ARGS% JVMLOCATION="java.exe" set ARGS=%ARGS% USEVMUNIVERSE="N" set ARGS=%ARGS% VMMEMORY="" set ARGS=%ARGS% VMMAXNUMBER="$(NUM_CPUS)" set ARGS=%ARGS% VMNETWORKING="N" set ARGS=%ARGS% USEHDFS="N" set ARGS=%ARGS% NAMENODE="" set ARGS=%ARGS% HDFSMODE="" set ARGS=%ARGS% HDFSPORT="" set ARGS=%ARGS% HDFSWEBPORT="" set ARGS=%ARGS% LOCALCONFIG="http://condor.mynet.edu/condor_config.local" msiexec /qn /norestart /l*v condor-install-log.txt /i condor-8.4.3-352143-Windows-x86.msi %ARGS% When I then check the created condor_config file, it contains the following line for the LOCALCONFIG setting: LOCAL_CONFIG_FILE = condor_urlfetch -$(SUBSYSTEM)
http://condor.mynet.edu/condor_config.local $(LOCAL_DIR)\condor_config.url_ca che | Is this correct? Notice the bar "|" at the end of the line. Should that be there, or will that cripple LOCALCONFIG settings? Thank you. Rob. |