2013-05-31 15:24:28 +00:00
|
|
|
|
2013-04-12 17:44:53 +00:00
|
|
|
#
|
|
|
|
# This task installs some common scripts to /usr/local/bin
|
|
|
|
# scripts are under $files/common-scripts
|
|
|
|
#
|
|
|
|
|
|
|
|
- name: Install common scripts
|
2014-01-01 19:15:11 +00:00
|
|
|
action: copy src={{ item }} dest=/usr/local/bin/ owner=root group=root mode=0755
|
2014-01-01 19:59:25 +00:00
|
|
|
with_fileglob:
|
2014-01-01 20:00:06 +00:00
|
|
|
-"{{ files }}/common-scripts/*"
|
2013-04-12 17:44:53 +00:00
|
|
|
tags:
|
|
|
|
- config
|