adding various bits.

This commit is contained in:
2023-04-12 19:24:13 -07:00
parent 78bb2c64b7
commit fc983b39a6
5 changed files with 289 additions and 3 deletions

View File

@@ -5,6 +5,15 @@
directory_mode: 0755
force: false
# changes are made often enough right now that this
# should be copied every run.
- name: copy the shell profile over
ansible.builtin.copy:
src: "{{ role_path }}/files/.profile"
dest: "/home/{{ laptop_user }}/.profile"
mode: 0644
force: true
- name: create binary directory
ansible.builtin.file:
path: "/home/{{ laptop_user }}/.local/bin"
@@ -27,9 +36,7 @@
- .gitignore_global
- .hgrc
- .mg
- .profile
- .vimrc
- .XCompose
- name: copy vim directory
ansible.builtin.copy:
@@ -37,3 +44,13 @@
dest: "/home/{{ laptop_user }}/"
directory_mode: 0755
force: false
- name: copy various dotfiles for non-headless systems
when: not headless
ansible.builtin.copy:
src: "{{ role_path }}/files/{{ item }}"
dest: "/home/{{ laptop_user }}/{{ item }}"
mode: 0644
with_items:
- .stumpwmrc
- .XCompose