@@ -172,14 +172,6 @@ fullInstallDIRAC() {
172
172
173
173
killRunsv
174
174
175
- # install ElasticSearch locally
176
- if [[ -z $NoSQLDB_HOST || $NoSQLDB_HOST == " localhost" ]]; then
177
- echo " Installing ElasticSearch locally"
178
- installES
179
- else
180
- echo " NoSQLDB_HOST != localhost, skipping local ElasticSearch install"
181
- fi
182
-
183
175
# basic install, with only the CS (and ComponentMonitoring) running, together with DB InstalledComponentsDB, which is needed)
184
176
if ! installSite; then
185
177
echo " ERROR: installSite failed" >&2
@@ -357,54 +349,6 @@ fullInstallDIRAC() {
357
349
}
358
350
359
351
360
- # ...............................................................................
361
- #
362
- # miniInstallDIRAC:
363
- #
364
- # This function install the bare minimum of DIRAC
365
- #
366
- # ...............................................................................
367
-
368
- miniInstallDIRAC (){
369
- echo " ==> [miniInstallDIRAC]"
370
-
371
- finalCleanup
372
-
373
- killRunsv
374
-
375
- # basic install, with only the CS (and ComponentMonitoring) running, together with DB InstalledComponentsDB, which is needed)
376
- if ! installSite; then
377
- echo " ERROR: installSite failed" >&2
378
- exit 1
379
- fi
380
-
381
- # Dealing with security stuff
382
- # generateCertificates
383
- if ! generateUserCredentials; then
384
- echo " ERROR: generateUserCredentials failed" >&2
385
- exit 1
386
- fi
387
-
388
- if ! diracCredentials; then
389
- echo " ERROR: diracCredentials failed" >&2
390
- exit 1
391
- fi
392
-
393
- # just add a site
394
- if ! diracAddSite; then
395
- echo " ERROR: diracAddSite failed" >&2
396
- exit 1
397
- fi
398
-
399
- # fix the SandboxStore and other stuff
400
- python " ${TESTCODE} /DIRAC/tests/Jenkins/dirac-cfg-update-server.py" dirac-JenkinsSetup " ${DEBUG} "
401
-
402
- echo " ==> Restarting Configuration Server"
403
- dirac-restart-component Configuration Server ${DEBUG}
404
- }
405
-
406
-
407
-
408
352
clean (){
409
353
410
354
echo " ==> [clean]"
0 commit comments