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
|
||||
# limitations under the License.
|
||||
|
||||
- name: Copy .bashrc
|
||||
- name: Create $HOME/.bashrc
|
||||
ansible.builtin.copy:
|
||||
src: bashrc
|
||||
dest: "{{ ansible_env.HOME }}/.bashrc"
|
||||
- name: Copy .bash_profile
|
||||
- name: Create $HOME/.bash_profile
|
||||
ansible.builtin.copy:
|
||||
src: bash_profile
|
||||
dest: "{{ ansible_env.HOME }}/.bash_profile"
|
||||
- name: Copy .zshrc
|
||||
- name: Create $HOME/.zshrc
|
||||
ansible.builtin.copy:
|
||||
src: zshrc
|
||||
dest: "{{ ansible_env.HOME }}/.zshrc"
|
||||
- name: Copy .zprofile
|
||||
- name: Create $HOME/.zprofile
|
||||
ansible.builtin.copy:
|
||||
src: zprofile
|
||||
dest: "{{ ansible_env.HOME }}/.zprofile"
|
||||
|
|
Loading…
Reference in a new issue