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

[Condor-users] Unattended Windows install: HOSTALLOWADMINISTATOR arg not working!



Hello,

On a Windows XP system, I installed condor-7.2.0-winnt50-x86.msi with the
"Unattended Installation Procedure Using the Included Set Up Program"
(manual section 3.2).

It says in the manual that we can knit together the ARGS variable, by having a
line in an install script as following:

------------------------
set ARGS=
[...]
set ARGS=%ARGS% HOSTALLOWADMINISTATOR="$(CONDOR_HOST)"
[...]
msiexec /qb /i condor-7.2.0-winnt50-x86.msi %ARGS%
------------------------


However, nomatter to what I set HOSTALLOWADMINISTATOR, it never appears
in the condor_config file. For example, I used:

set ARGS=%ARGS% HOSTALLOWADMINISTATOR="MYBLABLABLA"

and I cannot find this string in the eventual condor_config file.

Is this a bug in the msi installation file, or is there a bug in my
installation script (see below)?

Regards,
Rob.


My full install script is as follows:

@echo on
set ARGS=
set ARGS=%ARGS% NEWPOOL=N
set ARGS=%ARGS% POOLNAME="SK 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% HOSTALLOWADMINISTATOR="$(CONDOR_HOST)"
set ARGS=%ARGS% INSTALLDIR="C:\condor"
set ARGS=%ARGS% INSTALLDIR_NTS="C:\condor"
set ARGS=%ARGS% POOLHOSTNAME="125.125.120.72"
set ARGS=%ARGS% ACCOUNTINGDOMAIN="none"
set ARGS=%ARGS% JVMLOCATION="java.exe"
set ARGS=%ARGS% USEVMUNIVERSE=N
set ARGS=%ARGS% VMVERSION=""
set ARGS=%ARGS% VMMEMORY=""
set ARGS=%ARGS% VMMAXNUMBER=""
set ARGS=%ARGS% VMNETWORKING=N
set ARGS=%ARGS% STARTSERVICE=Y

msiexec /qb /i condor.msi %ARGS%