X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fglance%2Fmanifests%2Fcache%2Fcleaner.pp;fp=3rdparty%2Fmodules%2Fglance%2Fmanifests%2Fcache%2Fcleaner.pp;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=f05258db2427567d19aca819358b31041cb04db4;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/glance/manifests/cache/cleaner.pp b/3rdparty/modules/glance/manifests/cache/cleaner.pp deleted file mode 100644 index f05258db2..000000000 --- a/3rdparty/modules/glance/manifests/cache/cleaner.pp +++ /dev/null @@ -1,49 +0,0 @@ -# == Class: glance::cache::cleaner -# -# Installs a cron job to run glance-cache-cleaner. -# -# === Parameters -# -# [*minute*] -# (optional) Defaults to '1'. -# -# [*hour*] -# (optional) Defaults to '0'. -# -# [*monthday*] -# (optional) Defaults to '*'. -# -# [*month*] -# (optional) Defaults to '*'. -# -# [*weekday*] -# (optional) Defaults to '*'. -# -# [*command_options*] -# command options to add to the cronjob -# (eg. point to config file, or redirect output) -# (optional) Defaults to ''. -# -class glance::cache::cleaner ( - $minute = 1, - $hour = 0, - $monthday = '*', - $month = '*', - $weekday = '*', - $command_options = '', -) { - - include glance::params - - cron { 'glance-cache-cleaner': - command => "${glance::params::cache_cleaner_command} ${command_options}", - environment => 'PATH=/bin:/usr/bin:/usr/sbin', - user => 'glance', - minute => $minute, - hour => $hour, - monthday => $monthday, - month => $month, - weekday => $weekday, - require => Package[$::glance::params::api_package_name], - } -}