blob: 8ac84e7ba3f16e3d2ca2098e8c37f32d89172b62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: root - dotfiles
copy:
dest: '~root/.{{ item }}'
src: 'root/{{ item }}'
owner: root
group: root
mode: 0644
with_items:
- bash_profile
- bashrc
# vim: set ts=2 sw=2 et:
|