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 - name: hourly cron job for /etc/.git status is installed
cron: cron:
name: git status name: git status
minute: 42 minute: "42"
job: > job: >
who who
> /dev/null > /dev/null

View file

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