7c7f60cc84
The parameter descriptions says the value should be a positive integer (or 0). Validate the given value to reject invalid values such as strings or even negative values. Change-Id: Ib0937e1c3f6f97959b59e2c5812e3dfe696b6dba
123 lines
3.3 KiB
Puppet
123 lines
3.3 KiB
Puppet
#
|
|
# Copyright (C) 2018 Red Hat
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# == Class: nova::cron::purge_shadow_tables
|
|
#
|
|
# Clean shadow tables
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*minute*]
|
|
# (optional) Defaults to '0'.
|
|
#
|
|
# [*hour*]
|
|
# (optional) Defaults to '5'.
|
|
#
|
|
# [*monthday*]
|
|
# (optional) Defaults to '*'.
|
|
#
|
|
# [*month*]
|
|
# (optional) Defaults to '*'.
|
|
#
|
|
# [*weekday*]
|
|
# (optional) Defaults to '*'.
|
|
#
|
|
# [*user*]
|
|
# (optional) User with access to nova files.
|
|
# Defaults to $::nova::params::user.
|
|
#
|
|
# [*destination*]
|
|
# (optional) Path to file to which rows should be archived
|
|
# Defaults to '/var/log/nova/nova-rowspurge.log'.
|
|
#
|
|
# [*age*]
|
|
# (optional) Adds a retention policy when purging the shadow tables
|
|
# Defaults to 14.
|
|
#
|
|
# [*all_cells*]
|
|
# (optional) Adds --all-cells to the purge command
|
|
# Defaults to false.
|
|
#
|
|
# [*verbose*]
|
|
# (optional) Adds --verbose to the purge command
|
|
# If specified, will print information about the purged rows.
|
|
# Defaults to false.
|
|
#
|
|
# [*maxdelay*]
|
|
# (optional) In Seconds. Should be a positive integer.
|
|
# Induces a random delay before running the cronjob to avoid running
|
|
# all cron jobs at the same time on all hosts this job is configured.
|
|
# Defaults to 0.
|
|
#
|
|
# [*ensure*]
|
|
# (optional) Ensure cron jobs present or absent
|
|
# Defaults to present.
|
|
#
|
|
class nova::cron::purge_shadow_tables (
|
|
$minute = 0,
|
|
$hour = 5,
|
|
$monthday = '*',
|
|
$month = '*',
|
|
$weekday = '*',
|
|
$user = $::nova::params::user,
|
|
$destination = '/var/log/nova/nova-rowspurge.log',
|
|
$age = 14,
|
|
Boolean $all_cells = false,
|
|
Boolean $verbose = false,
|
|
Integer[0] $maxdelay = 0,
|
|
Enum['present', 'absent'] $ensure = 'present',
|
|
) inherits nova::params {
|
|
|
|
include nova::deps
|
|
include nova::params
|
|
|
|
if $verbose {
|
|
$verbose_real = ' --verbose'
|
|
}
|
|
else {
|
|
$verbose_real = ''
|
|
}
|
|
|
|
if $all_cells {
|
|
$all_cells_real = ' --all-cells'
|
|
}
|
|
else {
|
|
$all_cells_real = ''
|
|
}
|
|
|
|
if $maxdelay == 0 {
|
|
$delay_cmd = ''
|
|
} else {
|
|
$delay_cmd = "sleep `expr \${RANDOM} \\% ${maxdelay}`; "
|
|
}
|
|
|
|
$cron_cmd = 'nova-manage db purge'
|
|
|
|
cron { 'nova-manage db purge':
|
|
ensure => $ensure,
|
|
# lint:ignore:140chars
|
|
command => "${delay_cmd}${cron_cmd} --before `date --date='today - ${age} days' +\\%D`${verbose_real}${all_cells_real} >>${destination} 2>&1",
|
|
# lint:endignore
|
|
environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
|
user => $user,
|
|
minute => $minute,
|
|
hour => $hour,
|
|
monthday => $monthday,
|
|
month => $month,
|
|
weekday => $weekday,
|
|
require => Anchor['nova::dbsync::end']
|
|
}
|
|
}
|