From: Oleg Broytman Date: Tue, 10 Mar 2020 10:49:52 +0000 (+0300) Subject: Refactor(ansible/cleanup-tmp.sh): Sort host names X-Git-Url: https://git.phdru.name/?p=ansible.git;a=commitdiff_plain;h=1bba46ca5950129a076d5176487d1305687503bf Refactor(ansible/cleanup-tmp.sh): Sort host names --- diff --git a/playbooks/ansible/cleanup-tmp.sh b/playbooks/ansible/cleanup-tmp.sh index 16158c3..3b5ac46 100755 --- a/playbooks/ansible/cleanup-tmp.sh +++ b/playbooks/ansible/cleanup-tmp.sh @@ -3,7 +3,7 @@ echo localhost rm -rf .ansible/tmp/\* -for host in iskra-aviel.phdru.name phdru.name oper.med.ru; do +for host in iskra-aviel.phdru.name oper.med.ru phdru.name; do echo $host ssh -4 $host exec rm -rf .ansible/tmp/\* done