]> git.phdru.name Git - ansible.git/commitdiff
Feat(cleanup-tmp.sh): Remove option `-4` from `ssh`
authorOleg Broytman <phd@phdru.name>
Fri, 1 Oct 2021 15:58:59 +0000 (18:58 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 1 Oct 2021 15:58:59 +0000 (18:58 +0300)
playbooks/ansible/cleanup-tmp.sh

index a946fb8840d0e4f48543a85c9c345c6cc280fde9..5c404b3dd4cfb9522fbfde28412c89157f63d21e 100755 (executable)
@@ -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