Remove redundant spaces from cron commands

Change-Id: If545538c53677d4979e6f260a1f84caeea565c68
This commit is contained in:
Takashi Kajinami 2021-01-03 16:14:21 +09:00
parent 5b135ed130
commit 508b9f7fe5
5 changed files with 22 additions and 22 deletions

View File

@ -96,21 +96,21 @@ class nova::cron::archive_deleted_rows (
include nova::params
if $until_complete {
$until_complete_real = '--until-complete'
$until_complete_real = ' --until-complete'
}
else {
$until_complete_real = ''
}
if $purge {
$purge_real = '--purge'
$purge_real = ' --purge'
}
else {
$purge_real = ''
}
if $all_cells {
$all_cells_real = '--all-cells'
$all_cells_real = ' --all-cells'
}
else {
$all_cells_real = ''
@ -123,7 +123,7 @@ class nova::cron::archive_deleted_rows (
}
if $age {
$age_real = "--before `date --date=\'today - ${age} days\' +\\%F`"
$age_real = " --before `date --date=\'today - ${age} days\' +\\%F`"
} else {
$age_real = ''
}
@ -131,8 +131,8 @@ class nova::cron::archive_deleted_rows (
$cron_cmd = 'nova-manage db archive_deleted_rows'
cron { 'nova-manage db archive_deleted_rows':
command => "${sleep}${cron_cmd} ${purge_real} --max_rows ${max_rows} ${age_real} ${until_complete_real} \
${all_cells_real} >>${destination} 2>&1",
command => "${sleep}${cron_cmd}${purge_real} --max_rows ${max_rows}${age_real}${until_complete_real}${all_cells_real} \
>>${destination} 2>&1",
environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
user => pick($user, $::nova::params::nova_user),
minute => $minute,

View File

@ -79,14 +79,14 @@ class nova::cron::purge_shadow_tables (
include nova::params
if $verbose {
$verbose_real = '--verbose'
$verbose_real = ' --verbose'
}
else {
$verbose_real = ''
}
if $all_cells {
$all_cells_real = '--all-cells'
$all_cells_real = ' --all-cells'
}
else {
$all_cells_real = ''
@ -101,8 +101,8 @@ class nova::cron::purge_shadow_tables (
$cron_cmd = 'nova-manage db purge'
cron { 'nova-manage db purge':
command => "${sleep}${cron_cmd} --before `date --date='today - ${age} days' +\\%D` ${verbose_real} \
${all_cells_real} >>${destination} 2>&1",
command => "${sleep}${cron_cmd} --before `date --date='today - ${age} days' +\\%D`${verbose_real}${all_cells_real} \
>>${destination} 2>&1",
environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
user => pick($user, $::nova::params::nova_user),
minute => $minute,