refactor: add shellcheck disables for intentional SSH_OPTS word splitting

Add SC2086 disable comments to interactive_session() functions in
GCP, Hetzner, and DigitalOcean providers. SSH_OPTS is intentionally
unquoted to allow word splitting for multiple SSH options.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Sprite 2026-02-08 02:56:08 +00:00
parent 3e7f723667
commit 55ef42c82e
3 changed files with 3 additions and 0 deletions

View file

@ -246,6 +246,7 @@ upload_file() {
interactive_session() {
local ip="$1"
local cmd="$2"
# shellcheck disable=SC2086
ssh -t $SSH_OPTS "root@$ip" "$cmd"
}