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 --- home/.ansible/roles/bash_config_old/tasks/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 home/.ansible/roles/bash_config_old/tasks/main.yml (limited to 'home/.ansible/roles/bash_config_old/tasks/main.yml') diff --git a/home/.ansible/roles/bash_config_old/tasks/main.yml b/home/.ansible/roles/bash_config_old/tasks/main.yml new file mode 100644 index 0000000..28a12c9 --- /dev/null +++ b/home/.ansible/roles/bash_config_old/tasks/main.yml @@ -0,0 +1,21 @@ +--- +- name: copy '.bash_aliases' + ansible.builtin.copy: + src: .bash_aliases + dest: "{{ prefix_dir }}.bash_aliases" + mode: '0644' + tags: ['bash_aliases'] + +- name: copy '.bashrc' file with content + ansible.builtin.copy: + src: .bashrc + dest: "{{ prefix_dir }}.bashrc" + mode: '0644' + tags: ['bashrc'] + +- name: copy '.bash_profile' file with content + ansible.builtin.copy: + src: .bash_profile + dest: "{{ prefix_dir }}.bash_profile" + mode: '0644' + tags: ['bash_profile'] -- cgit v1.2.3-54-g00ecf