diff options
author | Pascal Terjan <pterjan@mageia.org> | 2025-07-04 20:54:13 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2025-07-04 20:54:13 +0000 |
commit | d2e30f03ef75ada672980d6b00d5d4e11f92efcf (patch) | |
tree | dbae6f9185af3b4d58043bee784a9ba869ed81c5 | |
parent | fb086940d9d4244ab058697dc43e7f7e723f0c0a (diff) | |
download | puppet-d2e30f03ef75ada672980d6b00d5d4e11f92efcf.tar puppet-d2e30f03ef75ada672980d6b00d5d4e11f92efcf.tar.gz puppet-d2e30f03ef75ada672980d6b00d5d4e11f92efcf.tar.bz2 puppet-d2e30f03ef75ada672980d6b00d5d4e11f92efcf.tar.xz puppet-d2e30f03ef75ada672980d6b00d5d4e11f92efcf.zip |
Fix timestamp for mass rebuild
-rw-r--r-- | modules/youri-check/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/youri-check/manifests/init.pp b/modules/youri-check/manifests/init.pp index 1a992113..d83ba1a6 100644 --- a/modules/youri-check/manifests/init.pp +++ b/modules/youri-check/manifests/init.pp @@ -41,8 +41,8 @@ class youri-check { $pgsql_user = "youri${version}" $pgsql_password = extlookup('youri_pgsql','x') # We want to alert for packages older than the cut-off for latest mass rebuild - # 1745605215 is 2025-04-25 - $max_days = (time() - 1745605215)/(24*3600) + # 1745539200 is 2025-04-25 + $max_days = (time() - 1745539200)/(24*3600) file { "${config}": ensure => present, |