From 9a2783b2e5724bf4f3da6919ea64bf3c18b37a74 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 1 Oct 2021 18:58:59 +0300 Subject: [PATCH] Feat(cleanup-tmp.sh): Remove option `-4` from `ssh` --- playbooks/ansible/cleanup-tmp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/ansible/cleanup-tmp.sh b/playbooks/ansible/cleanup-tmp.sh index a946fb8..5c404b3 100755 --- a/playbooks/ansible/cleanup-tmp.sh +++ b/playbooks/ansible/cleanup-tmp.sh @@ -5,5 +5,5 @@ rm -rf .ansible/tmp/\* for host in `run-hosts -e`; do echo $host - ssh -4 $host exec rm -rf .ansible/tmp/\* + ssh $host exec rm -rf .ansible/tmp/\* done -- 2.39.2