Rimozione indicazione esplicita dello username.
This commit is contained in:
parent
0d6f22439d
commit
e8fc9fffaa
16 changed files with 37 additions and 99 deletions
|
@ -3,30 +3,25 @@
|
|||
|
||||
- name: Creating configuration folders
|
||||
ansible.builtin.file:
|
||||
path: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.config/tmux/plugins"
|
||||
path: "{{ lookup('ansible.builtin.env', 'HOME') }}/.config/tmux/plugins"
|
||||
state: directory
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
mode: '0755'
|
||||
|
||||
- name: Getting tpm
|
||||
ansible.builtin.git:
|
||||
# noqa: latest[git]
|
||||
repo: https://github.com/tmux-plugins/tpm.git
|
||||
depth: 1
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.config/tmux/plugins/tpm"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.config/tmux/plugins/tpm"
|
||||
|
||||
- name: Linking default configuration file
|
||||
ansible.builtin.file:
|
||||
src: "{{ dotfdir }}/tmux.conf"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.config/tmux/tmux.conf"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.config/tmux/tmux.conf"
|
||||
state: link
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
|
||||
- name: Fallback default old standard
|
||||
ansible.builtin.file:
|
||||
src: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.config/tmux/tmux.conf"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.tmux.conf"
|
||||
src: "{{ lookup('ansible.builtin.env', 'HOME') }}/.config/tmux/tmux.conf"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.tmux.conf"
|
||||
state: link
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue