Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit b770ce68 authored by freezed's avatar freezed :mountain:
Browse files

:rotating_light: SYSTEM Conform to linter yes -> true

parent 38001a64
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
- name: FIREWALL | install packages
ansible.builtin.apt:
cache_valid_time: 3600
force_apt_get: yes
force_apt_get: true
pkg:
- fail2ban
- ufw
......@@ -46,7 +46,7 @@
- name: UFW | limit tcp port 22 IN
community.general.ufw:
direction: in
log: yes
log: true
port: '22'
proto: tcp
rule: limit
......
......@@ -5,7 +5,7 @@
ansible.builtin.find:
path: "/usr/local/share/fonts/"
patterns: "JetBrainsMono*"
recurse: yes
recurse: true
register: font_presence
- name: FONT | install JetBrainsMono font
......@@ -13,5 +13,5 @@
(font_presence.matched < 50)
ansible.builtin.unarchive:
dest: "/usr/local/share/"
remote_src: yes
remote_src: true
src: https://download.jetbrains.com/fonts/JetBrainsMono-2.242.zip
......@@ -2,7 +2,7 @@
- name: LDP | install packages
ansible.builtin.apt:
cache_valid_time: 3600
force_apt_get: yes
force_apt_get: true
pkg:
- syslog-ng
- ca-certificates
......@@ -20,5 +20,5 @@
- name: LDP | restart syslog-ng deamon
ansible.builtin.systemd:
state: restarted
daemon_reload: yes
daemon_reload: true
name: syslog-ng
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment