Merge "validate maxdelay for cron job"

This commit is contained in:
Zuul 2024-04-08 21:50:04 +00:00 committed by Gerrit Code Review
commit 9a48929ec3

View File

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