From: Oleg Broytman Date: Fri, 1 Oct 2021 15:58:59 +0000 (+0300) Subject: Feat(cleanup-tmp.sh): Remove option `-4` from `ssh` X-Git-Url: https://git.phdru.name/?p=ansible.git;a=commitdiff_plain;h=9a2783b2e5724bf4f3da6919ea64bf3c18b37a74 Feat(cleanup-tmp.sh): Remove option `-4` from `ssh` --- 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