Start LDM was added back in to the edex start up script

This commit is contained in:
Tiffany Meyer 2021-07-12 14:41:22 -04:00
parent 2c8f592a7c
commit 5c51db10b5

View file

@ -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
}