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 @@ ...@@ -2,7 +2,7 @@
- name: FIREWALL | install packages - name: FIREWALL | install packages
ansible.builtin.apt: ansible.builtin.apt:
cache_valid_time: 3600 cache_valid_time: 3600
force_apt_get: yes force_apt_get: true
pkg: pkg:
- fail2ban - fail2ban
- ufw - ufw
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
- name: UFW | limit tcp port 22 IN - name: UFW | limit tcp port 22 IN
community.general.ufw: community.general.ufw:
direction: in direction: in
log: yes log: true
port: '22' port: '22'
proto: tcp proto: tcp
rule: limit rule: limit
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
ansible.builtin.find: ansible.builtin.find:
path: "/usr/local/share/fonts/" path: "/usr/local/share/fonts/"
patterns: "JetBrainsMono*" patterns: "JetBrainsMono*"
recurse: yes recurse: true
register: font_presence register: font_presence
- name: FONT | install JetBrainsMono font - name: FONT | install JetBrainsMono font
...@@ -13,5 +13,5 @@ ...@@ -13,5 +13,5 @@
(font_presence.matched < 50) (font_presence.matched < 50)
ansible.builtin.unarchive: ansible.builtin.unarchive:
dest: "/usr/local/share/" dest: "/usr/local/share/"
remote_src: yes remote_src: true
src: https://download.jetbrains.com/fonts/JetBrainsMono-2.242.zip src: https://download.jetbrains.com/fonts/JetBrainsMono-2.242.zip
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
- name: LDP | install packages - name: LDP | install packages
ansible.builtin.apt: ansible.builtin.apt:
cache_valid_time: 3600 cache_valid_time: 3600
force_apt_get: yes force_apt_get: true
pkg: pkg:
- syslog-ng - syslog-ng
- ca-certificates - ca-certificates
...@@ -20,5 +20,5 @@ ...@@ -20,5 +20,5 @@
- name: LDP | restart syslog-ng deamon - name: LDP | restart syslog-ng deamon
ansible.builtin.systemd: ansible.builtin.systemd:
state: restarted state: restarted
daemon_reload: yes daemon_reload: true
name: syslog-ng 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