Add reusable ability

This commit is contained in:
danilapog 2022-07-11 12:51:18 +03:00
parent 4b9144d8fb
commit 2fc44ecd72

View file

@ -169,10 +169,13 @@ deprecated_var() {
update_supervisor_config() {
if [[ -n ${NODE_OPTIONS} ]]; then
RESULT=$(cat ./ds-converter.conf | grep -e 'NODE_OPTIONS')
if [[ -z ${RESULT} ]]; then
for file in ${SUPERVISOR_CONF_DIR}/ds-converter.conf ${SUPERVISOR_CONF_DIR}/ds-docservice.conf
do
sed -i "s/environment.*/&\,NODE_OPTIONS=${NODE_OPTIONS}/g" $file
sed -i "s|environment.*|&\,NODE_OPTIONS=${NODE_OPTIONS}|g" $file
done
fi
fi
}