Convert values in string

This commit is contained in:
Jérémy Dubois 2021-10-14 18:07:54 +02:00
parent 3ccc0ca924
commit 9269b13123
2 changed files with 3 additions and 3 deletions

View File

@ -118,7 +118,7 @@
- name: hourly cron job for /etc/.git status is installed
cron:
name: git status
minute: 42
minute: "42"
job: >
who
> /dev/null

View File

@ -2,7 +2,7 @@
- name: Enable IPv4 forwarding
sysctl:
name: net.inet.ip.forwarding
value: 1
value: "1"
state: present
reload: true
tags:
@ -11,7 +11,7 @@
- name: Enable IPv6 forwarding
sysctl:
name: net.inet6.ip6.forwarding
value: 1
value: "1"
state: present
reload: true
tags: