Files
DFWebOS-Apps/tailscale/exports.sh

19 lines
1.1 KiB
Bash

# Обнаружить, что мы выполняем установку Tailscale
if ! cat "${DFWEBOS_ROOT}/db/user.json" | grep --quiet '"tailscale"'
then
# Исправляйте только немодифицированный сценарий приложения версии 0.5.0, чтобы предотвратить бесконечный цикл или внесение странных изменений в будущие сценарии приложения.
if sha256sum "${DFWEBOS_ROOT}/scripts/app" | grep '43d41ead6963780289e381a172ea346603e36ae650f9e5c878e93aa5c1f78e15\|1620d0e2cfd9cb70e300e28cd3c93a03c00ee65175fe0281a71f62793cc05e19'
then
echo "Detected Tailscale install, we need to patch the install script so this doesn't fail!"
echo "Patching app script..."
sed -i 's/^ wait_for_tor_hs/ [[ "${app}" != "tailscale" ]] \&\& wait_for_tor_hs/g' "${DFWEBOS_ROOT}/scripts/app"
echo "Attempting new install after patch"
"${DFWEBOS_ROOT}/scripts/app" install tailscale
exit # this kills the original install script process
fi
fi