diff --git a/CHANGELOG.md b/CHANGELOG.md index 982aef2a..d0e9e7a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -74,7 +74,6 @@ The **patch** part changes is incremented if multiple releases happen the same m * evolinux-base: fix hardware.yml (wrong repo, missing update cache) * evolinux-base: start to install linux-image-cloud-amd64 with Buster * fail2ban: fix template marker -* listupgrade: try and get rid of duplicate entries * nagios: fix default file to monitor for check_clamav_db * nginx: fix mistake between "check_mode: no" and "when: not ansible_check_mode" (fail in check mode) * nginx: keep indentation diff --git a/listupgrade/tasks/main.yml b/listupgrade/tasks/main.yml index 78c655e9..dec4881d 100644 --- a/listupgrade/tasks/main.yml +++ b/listupgrade/tasks/main.yml @@ -45,19 +45,6 @@ owner: root group: root -- name: Disable listupgrade cron with an extra ending space - ansible.builtin.cron: - name: "listupgrade.sh" - cron_file: "listupgrade" - user: root - job: "/usr/share/scripts/listupgrade.sh --cron " - minute: "{{ listupgrade_cron_minute }}" - hour: "{{ listupgrade_cron_hour }}" - weekday: "{{ listupgrade_cron_weekday }}" - day: "{{ listupgrade_cron_day }}" - month: "{{ listupgrade_cron_month }}" - state: "absent" - - name: Enable listupgrade cron ansible.builtin.cron: name: "listupgrade.sh"