11 lines
279 B
YAML
11 lines
279 B
YAML
---
|
|
#
|
|
# 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/ owner=root group=root mode=0755
|
|
with_fileglob: $files/common-scripts/*
|
|
tags:
|
|
- config
|