Skip to content

Commit

Permalink
Merge pull request #1 from KelvinTegelaar/dev
Browse files Browse the repository at this point in the history
Unofficial Hotfix
  • Loading branch information
OfficialEsco authored Sep 20, 2024
2 parents f56c58e + 4fc8317 commit 18893d5
Show file tree
Hide file tree
Showing 102 changed files with 1,443 additions and 1,170 deletions.
15 changes: 0 additions & 15 deletions AddChocoApp_OrchestrationStarterTimer/function.json

This file was deleted.

7 changes: 0 additions & 7 deletions AddChocoApp_OrchestrationStarterTimer/run.ps1

This file was deleted.

15 changes: 0 additions & 15 deletions BestPracticeAnalyser_OrchestrationStarterTimer/function.json

This file was deleted.

3 changes: 0 additions & 3 deletions BestPracticeAnalyser_OrchestrationStarterTimer/run.ps1

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"scriptFile": "../Modules/CippEntrypoints/CippEntrypoints.psm1",
"entryPoint": "Receive-CippTimerTrigger",
"bindings": [
{
"name": "Timer",
"schedule": "0 0 */2 * * *",
"schedule": "0 0/15 * * * *",
"direction": "in",
"type": "timerTrigger"
},
Expand Down
121 changes: 121 additions & 0 deletions CIPPTimers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
[
{
"Command": "Start-UserTasksOrchestrator",
"Description": "Orchestrator to process user scheduled tasks",
"Cron": "0 */15 * * * *",
"Priority": 1,
"RunOnProcessor": true,
"PreferredProcessor": "usertasks"
},
{
"Command": "Start-CIPPProcessorQueue",
"Description": "Timer to handle user initiated tasks",
"Cron": "0 */15 * * * *",
"Priority": 1,
"RunOnProcessor": true
},
{
"Command": "Start-AuditLogOrchestrator",
"Description": "Orchestrator to process audit logs",
"Cron": "0 */15 * * * *",
"Priority": 2,
"RunOnProcessor": true,
"PreferredProcessor": "auditlog"
},
{
"Command": "Start-WebhookOrchestrator",
"Description": "Orchestrator to process webhooks",
"Cron": "0 */15 * * * *",
"Priority": 3,
"RunOnProcessor": true
},
{
"Command": "Start-StandardsOrchestrator",
"Description": "Orchestrator to process standards",
"Cron": "0 0 */4 * * *",
"Priority": 4,
"RunOnProcessor": true,
"PreferredProcessor": "standards"
},
{
"Command": "Start-CIPPGraphSubscriptionCleanupTimer",
"Description": "Orchestrator to cleanup old Graph subscriptions",
"Cron": "0 0 0 * * *",
"Priority": 5,
"RunOnProcessor": true
},
{
"Command": "Start-SchedulerOrchestrator",
"Description": "Orchestrator to process system scheduled tasks",
"Cron": "0 0 * * * *",
"Priority": 6,
"RunOnProcessor": true
},
{
"Command": "Set-CIPPGDAPInviteGroups",
"Description": "Orchestrator to map the groups for GDAP invites",
"Cron": "0 0 */3 * * *",
"Priority": 5,
"RunOnProcessor": true
},
{
"Command": "Start-UpdateTokensTimer",
"Description": "Orchestrator to update tokens",
"Cron": "0 0 0 * * 0",
"Priority": 7,
"RunOnProcessor": true,
"IsSystem": true
},
{
"Command": "Start-CIPPGraphSubscriptionRenewalTimer",
"Description": "Orchestrator to renew Graph subscriptions",
"Cron": "0 15 * * * *",
"Priority": 8,
"RunOnProcessor": true,
"IsSystem": true
},
{
"Command": "Start-DomainOrchestrator",
"Description": "Orchestrator to process domains",
"Cron": "0 0 0 * * *",
"Priority": 10,
"RunOnProcessor": true
},
{
"Command": "Start-UpdatePermissionsOrchestrator",
"Description": "Orchestrator to update CPV permissions",
"Cron": "0 0 0 * * *",
"Priority": 10,
"RunOnProcessor": true,
"IsSystem": true
},
{
"Command": "Start-BillingTimer",
"Description": "Timer to process billing",
"Cron": "0 0 0 * * *",
"Priority": 12,
"RunOnProcessor": true
},
{
"Command": "Start-BPAOrchestrator",
"Description": "Orchestrator to process BPA reports",
"Cron": "0 0 3 * * *",
"Priority": 10,
"RunOnProcessor": true
},
{
"Command": "Start-ExtensionOrchestrator",
"Description": "Orchestrator to process extensions",
"Cron": "0 0 */2 * * *",
"Priority": 12,
"RunOnProcessor": true
},
{
"Command": "Start-CIPPStatsTimer",
"Description": "Timer to process CIPP stats",
"Cron": "0 0 0 * * *",
"Priority": 15,
"RunOnProcessor": true,
"IsSystem": true
}
]
15 changes: 0 additions & 15 deletions Cleanup_OldAuditLogs/function.json

This file was deleted.

9 changes: 0 additions & 9 deletions Cleanup_OldAuditLogs/run.ps1

This file was deleted.

Loading

0 comments on commit 18893d5

Please sign in to comment.