diff --git a/tasks/debian.yml b/tasks/debian.yml index be4b380..c97ceef 100644 --- a/tasks/debian.yml +++ b/tasks/debian.yml @@ -13,4 +13,4 @@ - name: Update CA Trust (Debian, Ubuntu) command: update-ca-certificates - when: result | changed + when: result is changed diff --git a/tasks/red_hat.yml b/tasks/red_hat.yml index 49c5c34..a7e7f70 100644 --- a/tasks/red_hat.yml +++ b/tasks/red_hat.yml @@ -12,10 +12,10 @@ - name: Update CA Trust (Red Hat) command: update-ca-trust - when: result | changed + when: result is changed - name: Update CA Trust (Red Hat < 7) command: update-ca-trust enable when: - - result | changed + - result is changed - ansible_distribution_version|int < 7