]> git.phdru.name Git - ansible.git/blob - playbooks/ansible/cleanup-tmp.sh
Feat(packages): Install `calendar` and `net-tools`
[ansible.git] / playbooks / ansible / cleanup-tmp.sh
1 #! /bin/sh
2
3 echo localhost
4 rm -rf .ansible/tmp/\*
5
6 for host in `run-hosts -e`; do
7    echo $host
8    ssh $host exec rm -rf .ansible/tmp/\*
9 done