Remove redundant spaces from cron commands
Change-Id: If545538c53677d4979e6f260a1f84caeea565c68
This commit is contained in:
parent
5b135ed130
commit
508b9f7fe5
@ -96,21 +96,21 @@ class nova::cron::archive_deleted_rows (
|
|||||||
include nova::params
|
include nova::params
|
||||||
|
|
||||||
if $until_complete {
|
if $until_complete {
|
||||||
$until_complete_real = '--until-complete'
|
$until_complete_real = ' --until-complete'
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$until_complete_real = ''
|
$until_complete_real = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
if $purge {
|
if $purge {
|
||||||
$purge_real = '--purge'
|
$purge_real = ' --purge'
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$purge_real = ''
|
$purge_real = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
if $all_cells {
|
if $all_cells {
|
||||||
$all_cells_real = '--all-cells'
|
$all_cells_real = ' --all-cells'
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$all_cells_real = ''
|
$all_cells_real = ''
|
||||||
@ -123,7 +123,7 @@ class nova::cron::archive_deleted_rows (
|
|||||||
}
|
}
|
||||||
|
|
||||||
if $age {
|
if $age {
|
||||||
$age_real = "--before `date --date=\'today - ${age} days\' +\\%F`"
|
$age_real = " --before `date --date=\'today - ${age} days\' +\\%F`"
|
||||||
} else {
|
} else {
|
||||||
$age_real = ''
|
$age_real = ''
|
||||||
}
|
}
|
||||||
@ -131,8 +131,8 @@ class nova::cron::archive_deleted_rows (
|
|||||||
$cron_cmd = 'nova-manage db archive_deleted_rows'
|
$cron_cmd = 'nova-manage db archive_deleted_rows'
|
||||||
|
|
||||||
cron { '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} \
|
command => "${sleep}${cron_cmd}${purge_real} --max_rows ${max_rows}${age_real}${until_complete_real}${all_cells_real} \
|
||||||
${all_cells_real} >>${destination} 2>&1",
|
>>${destination} 2>&1",
|
||||||
environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
||||||
user => pick($user, $::nova::params::nova_user),
|
user => pick($user, $::nova::params::nova_user),
|
||||||
minute => $minute,
|
minute => $minute,
|
||||||
|
@ -79,14 +79,14 @@ class nova::cron::purge_shadow_tables (
|
|||||||
include nova::params
|
include nova::params
|
||||||
|
|
||||||
if $verbose {
|
if $verbose {
|
||||||
$verbose_real = '--verbose'
|
$verbose_real = ' --verbose'
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$verbose_real = ''
|
$verbose_real = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
if $all_cells {
|
if $all_cells {
|
||||||
$all_cells_real = '--all-cells'
|
$all_cells_real = ' --all-cells'
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$all_cells_real = ''
|
$all_cells_real = ''
|
||||||
@ -101,8 +101,8 @@ class nova::cron::purge_shadow_tables (
|
|||||||
$cron_cmd = 'nova-manage db purge'
|
$cron_cmd = 'nova-manage db purge'
|
||||||
|
|
||||||
cron { 'nova-manage db purge':
|
cron { 'nova-manage db purge':
|
||||||
command => "${sleep}${cron_cmd} --before `date --date='today - ${age} days' +\\%D` ${verbose_real} \
|
command => "${sleep}${cron_cmd} --before `date --date='today - ${age} days' +\\%D`${verbose_real}${all_cells_real} \
|
||||||
${all_cells_real} >>${destination} 2>&1",
|
>>${destination} 2>&1",
|
||||||
environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
||||||
user => pick($user, $::nova::params::nova_user),
|
user => pick($user, $::nova::params::nova_user),
|
||||||
minute => $minute,
|
minute => $minute,
|
||||||
|
Loading…
Reference in New Issue
Block a user