]> git.phdru.name Git - ansible.git/blob - playbooks/ansible/cleanup-tmp.sh
Feat(ansible): Add shell script to cleanup `.ansible/tmp`
[ansible.git] / playbooks / ansible / cleanup-tmp.sh
1 #! /bin/sh
2
3 echo localhost
4 rm -rf .ansible/tmp/\*
5
6 for host in iskra-aviel.phdru.name phdru.name oper.med.ru; do
7    echo $host
8    ssh -4 $host exec rm -rf .ansible/tmp/\*
9 done