Ran ansible-lint
This commit is contained in:
parent
92f761f4bb
commit
43d470edf3
33 changed files with 343 additions and 317 deletions
|
|
@ -1,16 +1,17 @@
|
|||
---
|
||||
- name: Create configuration directory
|
||||
ansible.builtin.file:
|
||||
path: '{{ ansible_env.HOME }}/.config/mpv'
|
||||
path: "{{ ansible_env.HOME }}/.config/mpv"
|
||||
state: directory
|
||||
mode: '0700'
|
||||
mode: "0700"
|
||||
|
||||
- name: Copy configuration files
|
||||
ansible.builtin.template:
|
||||
src: '{{ item.src }}'
|
||||
dest: '{{ item.dest }}'
|
||||
mode: '0644'
|
||||
src: "{{ item.src }}"
|
||||
dest: "{{ item.dest }}"
|
||||
mode: "0644"
|
||||
loop:
|
||||
- src: 'templates/mpv/input.j2'
|
||||
dest: '{{ ansible_env.HOME }}/.config/mpv/input.conf'
|
||||
- src: 'templates/mpv/config.j2'
|
||||
dest: '{{ ansible_env.HOME }}/.config/mpv/mpv.conf'
|
||||
- src: "templates/mpv/input.j2"
|
||||
dest: "{{ ansible_env.HOME }}/.config/mpv/input.conf"
|
||||
- src: "templates/mpv/config.j2"
|
||||
dest: "{{ ansible_env.HOME }}/.config/mpv/mpv.conf"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue