move common_scripts to base - and replace it in mirrorlist

This commit is contained in:
Seth Vidal 2013-05-31 15:24:28 +00:00
parent 1cf5e99f21
commit 03678621c2
3 changed files with 11 additions and 2 deletions

View file

@ -32,7 +32,6 @@
tasks:
# this is how you include other task lists
- include: $tasks/common_scripts.yml
- include: $tasks/hosts.yml
- include: $tasks/yumrepos.yml
- include: $tasks/base.yml

View file

@ -149,3 +149,13 @@
- postfix
- config
#
# 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

View file

@ -1,4 +1,4 @@
---
#
# This task installs some common scripts to /usr/local/bin
# scripts are under $files/common-scripts