From d8a7729358a2fd3b911022e45d0197fda3e5da94 Mon Sep 17 00:00:00 2001 From: boom2 Date: Fri, 8 Dec 2023 14:12:33 -0500 Subject: - add exeriments for: - roles - variables - inventory changes - config changes --- .../system/05-playbook-bash-configs.yml | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ansible-practice/system/05-playbook-bash-configs.yml (limited to 'ansible-practice/system/05-playbook-bash-configs.yml') diff --git a/ansible-practice/system/05-playbook-bash-configs.yml b/ansible-practice/system/05-playbook-bash-configs.yml new file mode 100644 index 0000000..3f56745 --- /dev/null +++ b/ansible-practice/system/05-playbook-bash-configs.yml @@ -0,0 +1,31 @@ +# - similar to '02-playbook-copy-bash-configs.yml' but uses 'vars_files' +# to store the variable 'prefix_dir' inside files representing +# the environment + +--- +- name: "05 - custom ansible - copy bash config files w/ content" + hosts: localhost + connection: local + vars_files: + - [ "vars/{{ inventory_hostname }}.yml", "vars/otherhosts.yml" ] + tasks: + - name: copy '.bash_aliases' + ansible.builtin.copy: + src: ~/repos/ansible_repo/ansible-practice/system/.bash_aliases + dest: "{{ prefix_dir }}.bash_aliases" + mode: '0644' + tags: ['bash_aliases'] + + - name: Creating '.bashrc' file with content + ansible.builtin.copy: + src: ~/repos/ansible_repo/ansible-practice/system/.bashrc + dest: "{{ prefix_dir }}.bashrc" + mode: '0644' + tags: ['bashrc'] + + - name: Creating '.bash_profile' file with content + ansible.builtin.copy: + src: ~/repos/ansible_repo/ansible-practice/system/.bash_profile + dest: "{{ prefix_dir }}.bash_profile" + mode: '0644' + tags: ['bash_profile'] -- cgit v1.2.3-54-g00ecf