ansible/tasks/common_scripts.yml
2016-01-06 21:25:10 +00:00

12 lines
285 B
YAML

#
# This task installs some common scripts to /usr/local/bin
# scripts are under $files/common-scripts
#
- name: Install common scripts
copy: src={{ item }} dest=/usr/local/bin/ owner=root group=root mode=0755
with_fileglob:
-"{{ files }}/common-scripts/*"
tags:
- config