2015-11-11 09:56:13 +00:00
|
|
|
---
|
2015-11-17 13:20:58 +00:00
|
|
|
- name: List installable sh scripts
|
2016-02-16 20:32:41 +00:00
|
|
|
become: false
|
|
|
|
local_action: shell ls -1 "{{role_path}}/files/bashrc.d/"*.sh
|
2015-11-17 13:20:58 +00:00
|
|
|
register: bash_scripts
|
2015-12-29 14:29:57 +00:00
|
|
|
failed_when:
|
|
|
|
bash_scripts.rc != 0
|
|
|
|
changed_when: False
|
2015-11-17 13:20:58 +00:00
|
|
|
|
2015-11-11 09:56:13 +00:00
|
|
|
# tasks file for roles/glenux.bash
|
2015-11-17 23:57:38 +00:00
|
|
|
- name: Install main configuration files for bash
|
2016-04-12 22:17:33 +00:00
|
|
|
copy: >
|
|
|
|
src="{{item[1]}}"
|
|
|
|
dest="~/.{{item[1]|basename}}"
|
2015-11-17 22:37:20 +00:00
|
|
|
mode=0644
|
2015-11-17 13:20:58 +00:00
|
|
|
become: true
|
2015-11-17 23:57:38 +00:00
|
|
|
become_user: "{{item[0]}}"
|
|
|
|
with_nested:
|
2016-04-12 22:17:33 +00:00
|
|
|
- "{{bash_users}}"
|
2015-11-17 23:57:38 +00:00
|
|
|
- ['bashrc', 'bash_profile', 'bash_aliases']
|
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}}"
|
2016-04-12 22:17:33 +00:00
|
|
|
with_items: "{{bash_users}}"
|
2015-11-17 13:42:31 +00:00
|
|
|
|
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:
|
2016-04-12 22:17:33 +00:00
|
|
|
- "{{bash_users}}"
|
|
|
|
- "{{bash_scripts.stdout_lines}}"
|
2015-11-17 13:20:58 +00:00
|
|
|
|