remove github

This commit is contained in:
Jamie Albert
2025-11-02 21:18:46 +00:00
parent 2e2c1a77f7
commit 5bc91f8354
3 changed files with 3 additions and 3 deletions

0
firewall/mullvad_tailscale.conf Normal file → Executable file
View File

View File

@@ -112,7 +112,7 @@ install_tool() {
sudo cp -f "${jade_config_src}" "${jade_config_dest}" || error 9 "Failed to copy config for jade.sh"
info " Installed: ${jade_config_dest} - manually set variables within this file."
else
info " [info]: ${jade_config_dest} already exists, not overwriting."
info " [info]: ${jade_config_dest} already exists, not overwriting."
fi
else
error 10 " Config template not found: '${jade_config_src}'"

View File

@@ -74,7 +74,7 @@ edit_file() {
upload_compose() {
upload_file
ssh -q "${REMOTE_HOST}" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d --remove-orphans" \
|| error 8 'Remote docker compose up failed'
info 'Remote docker compose up -d completed'
}
@@ -90,7 +90,7 @@ upload_restart() {
|| error 9 'Remote docker compose down failed'
upload_file
ssh -q "${REMOTE_HOST}" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d --remove-orphans" \
|| error 11 'Remote docker compose up failed during restart'
info 'Remote docker compose restart completed'
}