mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
204141eca8 | ||
|
|
6d26a3abcf |
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "streamline-emr",
|
"name": "streamline-emr",
|
||||||
"org": "streamline",
|
"org": "streamline",
|
||||||
"version": "2.1",
|
"version": "2.1.1",
|
||||||
"platforms": [
|
"platforms": [
|
||||||
"linux/arm64"
|
"linux/arm64"
|
||||||
],
|
],
|
||||||
|
|||||||
+7
-1
@@ -25,6 +25,7 @@ fi
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
NODEID=$(grep ^nodeID /etc/signalytic/identity 2>/dev/null | cut -d= -f2 | xargs)
|
||||||
APP_SLUG="streamline_emr"
|
APP_SLUG="streamline_emr"
|
||||||
ORG_SLUG="streamline"
|
ORG_SLUG="streamline"
|
||||||
INSTALL_ROOT="/var/signalytic/clientapps/${ORG_SLUG}/${APP_SLUG}"
|
INSTALL_ROOT="/var/signalytic/clientapps/${ORG_SLUG}/${APP_SLUG}"
|
||||||
@@ -36,10 +37,15 @@ if [ -f ${INSTALL_ROOT}/stop ]; then
|
|||||||
${INSTALL_ROOT}/stop
|
${INSTALL_ROOT}/stop
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# reset data for any v1 or v2.0 installations
|
# reset data for any version '1.*' or '2.0*' installations
|
||||||
if grep -q "^1." ${VERSION_FILE} || grep -q "^2.0" ${VERSION_FILE}; then
|
if grep -q "^1." ${VERSION_FILE} || grep -q "^2.0" ${VERSION_FILE}; then
|
||||||
echo "demo installation detected (v$(cat ${VERSION_FILE})) - resetting data"
|
echo "demo installation detected (v$(cat ${VERSION_FILE})) - resetting data"
|
||||||
rm -rf ${DATA_ROOT}
|
rm -rf ${DATA_ROOT}
|
||||||
|
|
||||||
|
# reset data for version '2.1' installations, unless running on node STRLTEST
|
||||||
|
elif [ "${NODEID}" != "STRLTEST" ] && grep -q "^2.1$" ${VERSION_FILE}; then
|
||||||
|
echo "demo installation detected (v2.1) - resetting data"
|
||||||
|
rm -rf ${DATA_ROOT}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# copy root files (if present)
|
# copy root files (if present)
|
||||||
|
|||||||
Reference in New Issue
Block a user