Merge "validate maxdelay for cron job"

This commit is contained in:
Zuul 2024-04-08 21:26:28 +00:00 committed by Gerrit Code Review
commit f9f2e8bb44
1 changed files with 9 additions and 9 deletions

View File

@ -59,15 +59,15 @@
# Defaults to present.
#
class manila::cron::db_purge (
$minute = 1,
$hour = 0,
$monthday = '*',
$month = '*',
$weekday = '*',
$user = $::manila::params::user,
$age = 0,
$destination = '/var/log/manila/manila-rowsflush.log',
$maxdelay = 0,
$minute = 1,
$hour = 0,
$monthday = '*',
$month = '*',
$weekday = '*',
$user = $::manila::params::user,
$age = 0,
$destination = '/var/log/manila/manila-rowsflush.log',
Integer[0] $maxdelay = 0,
Enum['present', 'absent'] $ensure = 'present',
) inherits manila::params {