adding various bits.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user