[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] Unattended Windows install with 8.0.3: POOLNAME does not work!?!?



Hi,

I am setting up an unattended install of HTCondor 8.0.3 on Windows 7, following the guidelines of the manual in section 3.2.5.4 (see below for the batch script).

It all goes well, except that the POOLNAME argument in the script does not do what it is supposed to do.

In the script I have set POOLNAME to "University Library", but in the final condor.config file it says:

COLLECTOR_NAME =  My Pool - $(CONDOR_HOST)

In the installation log file are several lines about POOLNAME:

--------------------
PROPERTY CHANGE: Adding POOLNAME property. Its value is 'University Library'.

Skipping action: SetPOOLNAME (condition is false)

Executing op: RegAddValue(Name=POOLNAME,Value=University Library,)

Property(S): POOLNAME = University Library

--------------------


Anyway, after all it does not set the 'COLLECTOR_NAME' macro properly.

This worked fine a long while ago with Condor 7.X on Windows XP.

What is different now?
Can somebody help?

Thanks,
Rob.

Here is my batch script:

REM Install Condor
set MSI="condor-8.0.3-174914-Windows-x86.msi"
set ARGS=
set ARGS=NEWPOOL="N"
set ARGS=%ARGS% POOLNAME="University 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="125.125.0.0/16"
set ARGS=%ARGS% HOSTALLOWWRITE="125.125.0.0/16"
set ARGS=%ARGS% HOSTALLOWADMINISTRATOR="condor.univ.edu"
set ARGS=%ARGS% INSTALLDIR="C:\condor"
set ARGS=%ARGS% POOLHOSTNAME="condor.univ.edu"
set ARGS=%ARGS% ACCOUNTINGDOMAIN="none"
set ARGS=%ARGS% JVMLOCATION=""
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=""
msiexec /qn /norestart /l*v condor-install-log.txt /i %MSI% %ARGS%