This commit fixes the following warning in the puppet master's logs:
Jan 26 16:09:26 <daemon.warn> marvin puppet-master[68168]: The argument signature (String format, [String timezone]) is deprecated for #strfime. See #strftime documentation and Timespan type for more info
Jan 26 16:09:26 <daemon.warn> marvin puppet-master[68168]: (at /usr/local/etc/puppet/environments/production/modules/apt/manifests/update.pp:17)
'daily': {
#compare current date with the apt_update_last_success fact to determine
#if we should kick apt_update.
- $daily_threshold = (Integer(strftime('%s')) - 86400)
+ $daily_threshold = (Integer(Timestamp().strftime('%s')) - 86400)
if $::apt_update_last_success {
if $::apt_update_last_success + 0 < $daily_threshold {
$_kick_apt = true
'weekly':{
#compare current date with the apt_update_last_success fact to determine
#if we should kick apt_update.
- $weekly_threshold = (Integer(strftime('%s')) - 604800)
+ $weekly_threshold = (Integer(Timestamp().strftime('%s')) - 604800)
if $::apt_update_last_success {
if ( $::apt_update_last_success + 0 < $weekly_threshold ) {
$_kick_apt = true