opt out telemetry after install

This commit is contained in:
rootzoll
2021-12-16 22:51:03 +01:00
parent 7dc7ab9226
commit 7272771664

View File

@@ -85,14 +85,16 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
sudo -u thunderhub /home/admin/config.scripts/blitz.git-verify.sh \ sudo -u thunderhub /home/admin/config.scripts/blitz.git-verify.sh \
"${PGPsigner}" "${PGPpubkeyLink}" "${PGPpubkeyFingerprint}" || exit 1 "${PGPsigner}" "${PGPpubkeyLink}" "${PGPpubkeyFingerprint}" || exit 1
# opt out of telemetry echo "Running npm install ..."
sudo -u thunderhub npx next telemetry disable
echo "Running npm install and run build..."
if ! sudo -u thunderhub npm install; then if ! sudo -u thunderhub npm install; then
echo "FAIL - npm install did not run correctly, aborting" echo "FAIL - npm install did not run correctly, aborting"
exit 1 exit 1
fi fi
echo "# opt out of telemetry ..."
sudo -u thunderhub npx next telemetry disable
echo "# run build ..."
sudo -u thunderhub npm run build sudo -u thunderhub npm run build
############### ###############