From f16335f3d98d974abd71e4b82de542daa75aef53 Mon Sep 17 00:00:00 2001 From: Frank Henninger Date: Tue, 21 Nov 2023 10:40:14 -0600 Subject: [PATCH 1/2] Issue-214: Add ActiveStartDate to compare property --- plugins/modules/agent_job_schedule.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/agent_job_schedule.ps1 b/plugins/modules/agent_job_schedule.ps1 index b73c6b44..62b22591 100644 --- a/plugins/modules/agent_job_schedule.ps1 +++ b/plugins/modules/agent_job_schedule.ps1 @@ -113,7 +113,7 @@ try { $compareProperty = @( "ActiveEndDate" "ActiveEndTimeOfDay" - "ActiveEndTimeOfDay" + "ActiveStartDate" "ActiveStartTimeOfDay" "Description" "FrequencyInterval" From 1c6a52583d586d36e254d5f620c50a73812f06bb Mon Sep 17 00:00:00 2001 From: Frank Henninger Date: Fri, 19 Jan 2024 21:31:00 -0600 Subject: [PATCH 2/2] Issue-214: Fix ActiveStartDate comparison for schedule --- changelogs/fragments/214-fix-schedule-activestartdate.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 changelogs/fragments/214-fix-schedule-activestartdate.yml diff --git a/changelogs/fragments/214-fix-schedule-activestartdate.yml b/changelogs/fragments/214-fix-schedule-activestartdate.yml new file mode 100644 index 00000000..c8344ab0 --- /dev/null +++ b/changelogs/fragments/214-fix-schedule-activestartdate.yml @@ -0,0 +1,2 @@ +bugfixes: + - Add ActiveStartDate to the compare properties so this item is marked accurately as changed.