ansible/tasks/common_scripts.yml

12 lines
247 B
YAML
Raw Normal View History

---
#
# This task installs some common scripts to /usr/local/bin
# scripts are under $files/common-scripts
#
- name: Install common scripts
action: copy src=$item dest=/usr/local/bin/
with_fileglob: $files/common-scripts/*
tags:
- config