Unverified Commit 87e45459 authored by Mattia Rizzolo's avatar Mattia Rizzolo
Browse files

letsencrypt: fix ansible warning about str vs int



apparently this thing likes str more than int.

Signed-off-by: default avatarMattia Rizzolo <mattia@reproducible-builds.org>
parent 84106655
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -52,9 +52,9 @@
    cron_file: letsencrypt
    state: present
    user: letsencrypt
    minute: 23
    hour: 2
    dow: 0
    minute: "23"
    hour: "2"
    dow: "0"
    env: "{{ item.env }}"
    name: "{{ item.name }}"
    job: "{{ item.job }}"