diff options
author | Matt Clay <matt@mystile.com> | 2018-01-23 10:08:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-23 10:08:16 -0800 |
commit | 4f6017dc1629361cce6fa3e2e035a4710550db9e (patch) | |
tree | 971cfbb1f4dfe03d5ee3cd67d4ca1dd6def7845f /test/integration/targets/synchronize | |
parent | 060001b08d98969217156b2b696613ade44eb8c5 (diff) | |
download | ansible-4f6017dc1629361cce6fa3e2e035a4710550db9e.tar.gz |
Move requirements into tests. (#35197)
Diffstat (limited to 'test/integration/targets/synchronize')
-rw-r--r-- | test/integration/targets/synchronize/tasks/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/integration/targets/synchronize/tasks/main.yml b/test/integration/targets/synchronize/tasks/main.yml index 5913762183..80e052a6a3 100644 --- a/test/integration/targets/synchronize/tasks/main.yml +++ b/test/integration/targets/synchronize/tasks/main.yml @@ -16,6 +16,11 @@ # You should have received a copy of the GNU General Public License # along with Ansible. If not, see <http://www.gnu.org/licenses/>. +- name: install rsync + package: + name: rsync + when: ansible_distribution != "MacOSX" + - name: cleanup old files shell: rm -rf {{output_dir}}/* |