Small tidy
This commit is contained in:
parent
add3bdb4f8
commit
fb36303772
|
@ -1,10 +1,10 @@
|
||||||
[Interface]
|
[Interface]
|
||||||
PrivateKey =
|
PrivateKey =
|
||||||
Address =
|
Address =
|
||||||
PostUp = /usr/bin/systemd-resolve -i %i --set-dns= --set-domain=~. --set-domain=
|
# PostUp = /usr/bin/systemd-resolve -i %i --set-dns= --set-domain=~. --set-domain=
|
||||||
|
|
||||||
[Peer]
|
[Peer]
|
||||||
PublicKey =
|
PublicKey =
|
||||||
PreSharedKey =
|
PreSharedKey =
|
||||||
EndPoint =
|
EndPoint =
|
||||||
AllowedIPs = 0.0.0.0/0
|
AllowedIPs = 0.0.0.0/0, ::/0
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
dest: "{{ wgconfig_path }}"
|
dest: "{{ wgconfig_path }}"
|
||||||
src: files/wireguard.conf
|
src: files/wireguard.conf
|
||||||
mode: '0400'
|
mode: '0400'
|
||||||
when: wgconfig.stat.exists == False
|
when: not wgconfig.stat.exists
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: 'Wireguard: Fix configuration permissions'
|
- name: 'Wireguard: Fix configuration permissions'
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
|
|
||||||
- name: Refresh font cache
|
- name: Refresh font cache
|
||||||
command: 'fc-cache -f'
|
command: 'fc-cache -f'
|
||||||
when: fontfile.stat.exists == false
|
when: not fontfile.stat.exists
|
||||||
|
|
||||||
- name: 'Gnome extensions'
|
- name: 'Gnome extensions'
|
||||||
tags:
|
tags:
|
||||||
|
@ -116,4 +116,4 @@
|
||||||
url: "https://github.com/laurent22/joplin/releases/download/v{{ joplin_version.stdout }}/Joplin-{{ joplin_version.stdout }}-x86_64.AppImage"
|
url: "https://github.com/laurent22/joplin/releases/download/v{{ joplin_version.stdout }}/Joplin-{{ joplin_version.stdout }}-x86_64.AppImage"
|
||||||
dest: "{{ '~/.joplin/Joplin.AppImage' | expanduser }}"
|
dest: "{{ '~/.joplin/Joplin.AppImage' | expanduser }}"
|
||||||
mode: '0500'
|
mode: '0500'
|
||||||
when: joplin_app.stat.exists == false
|
when: not joplin_app.stat.exists
|
||||||
|
|
Loading…
Reference in a new issue