2015-11-11 09:56:13 +00:00
|
|
|
---
|
2015-11-17 13:20:58 +00:00
|
|
|
- name: List installable sh scripts
|
2015-11-17 13:39:41 +00:00
|
|
|
shell: ls -1 "{{role_path}}/files/bashrc.d/"*.sh
|
2015-11-17 13:20:58 +00:00
|
|
|
register: bash_scripts
|
|
|
|
|
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
|
2015-11-17 13:39:41 +00:00
|
|
|
copy: src=bashrc dest=~/.bashrc
|
2015-11-17 13:20:58 +00:00
|
|
|
become: true
|
|
|
|
become_user: "{{item}}"
|
|
|
|
with_items: bash_users
|
2015-11-17 11:07:59 +00:00
|
|
|
|
2015-11-17 13:42:31 +00:00
|
|
|
- name: Create bashrc.d directory
|
|
|
|
file: path=~/.bashrc.d state=directory
|
|
|
|
become: true
|
|
|
|
become_user: "{{item}}"
|
|
|
|
with_items: bash_users
|
|
|
|
|
2015-11-17 11:07:59 +00:00
|
|
|
- name: Install bashrc.d files
|
2015-11-17 13:39:41 +00:00
|
|
|
copy: "src={{item[1]}} dest=~/.bashrc.d/{{item[1]|basename}}"
|
2015-11-17 13:20:58 +00:00
|
|
|
become: true
|
|
|
|
become_user: "{{item[0]}}"
|
2015-11-17 11:07:59 +00:00
|
|
|
with_nested:
|
|
|
|
- bash_users
|
2015-11-17 13:20:58 +00:00
|
|
|
- bash_scripts.stdout_lines
|
|
|
|
|