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