ansible-role--bashrc/tasks/main.yml

18 lines
292 B
YAML
Raw Normal View History

2015-11-11 09:56:13 +00:00
---
# tasks file for roles/glenux.bash
2015-11-17 11:07:59 +00:00
- name: Install bashrc
fileglob:
- bashrc.d/*.sh
- name: Install bashrc.d files
copy:
"src={{item}}"
"dest=~/.bashrc.d/{{item|basename}}"
with_nested:
- bash_users
- bash_files
become: true
become_user: "{{item}}"