12 lines
247 B
YAML
12 lines
247 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/
|
||
|
with_fileglob: $files/common-scripts/*
|
||
|
tags:
|
||
|
- config
|