Update role names
This commit is contained in:
parent
8ffb0a4772
commit
bef9016deb
1 changed files with 4 additions and 4 deletions
|
@ -13,19 +13,19 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
- name: Copy .bashrc
|
- name: Create $HOME/.bashrc
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: bashrc
|
src: bashrc
|
||||||
dest: "{{ ansible_env.HOME }}/.bashrc"
|
dest: "{{ ansible_env.HOME }}/.bashrc"
|
||||||
- name: Copy .bash_profile
|
- name: Create $HOME/.bash_profile
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: bash_profile
|
src: bash_profile
|
||||||
dest: "{{ ansible_env.HOME }}/.bash_profile"
|
dest: "{{ ansible_env.HOME }}/.bash_profile"
|
||||||
- name: Copy .zshrc
|
- name: Create $HOME/.zshrc
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: zshrc
|
src: zshrc
|
||||||
dest: "{{ ansible_env.HOME }}/.zshrc"
|
dest: "{{ ansible_env.HOME }}/.zshrc"
|
||||||
- name: Copy .zprofile
|
- name: Create $HOME/.zprofile
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: zprofile
|
src: zprofile
|
||||||
dest: "{{ ansible_env.HOME }}/.zprofile"
|
dest: "{{ ansible_env.HOME }}/.zprofile"
|
||||||
|
|
Loading…
Reference in a new issue