From 5c51db10b582621b18849f552a4660bf461733c7 Mon Sep 17 00:00:00 2001 From: Tiffany Meyer Date: Mon, 12 Jul 2021 14:41:22 -0400 Subject: [PATCH] Start LDM was added back in to the edex start up script --- rpms/awips2.upc/Installer.awips/programs/edex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpms/awips2.upc/Installer.awips/programs/edex b/rpms/awips2.upc/Installer.awips/programs/edex index 33aad378c87..a0155fc6c17 100755 --- a/rpms/awips2.upc/Installer.awips/programs/edex +++ b/rpms/awips2.upc/Installer.awips/programs/edex @@ -326,13 +326,13 @@ edex_start() { elif [ "${args[1]}" == 'ingest' ]; then printf "#!/bin/bash\nexport SERVICES=( 'ingest' 'ingestGrib' )\n" > /etc/init.d/edexServiceList su -c "service edex_camel start" - #ldm_start + ldm_start elif [ "${args[1]}" == 'database' ]; then printf "#!/bin/bash\nexport SERVICES=( 'request' )\n" > /etc/init.d/edexServiceList su -c "service edex_camel start" elif [ "${args[1]}" != 'dev' ]; then su -c "service edex_camel start" - #ldm_start + ldm_start fi }