]> git.openstreetmap.org Git - chef.git/commitdiff
Modify backup expiry script to expire everything when no prefix is given
authorTom Hughes <tom@compton.nu>
Mon, 8 Jul 2019 21:35:23 +0000 (22:35 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 8 Jul 2019 21:35:23 +0000 (22:35 +0100)
cookbooks/backup/files/default/expire-backups

index 4e26e37118ec397cbdf4122180a625956c03bf7e..0cd75a5029dba6cbafceb5effec5f58f4be775ab 100644 (file)
@@ -18,6 +18,15 @@ my $dir = shift;
 my $prefix = shift;
 my @dates;
 
+if ($prefix)
+{
+    $prefix = "${prefix}-";
+}
+else
+{
+    $prefix = "(?:.*-)?";
+}
+
 for my $day (0 .. $days - 1)
 {
     push(@dates, sprintf("%04d-%02d-%02d", Subtract_Delta_Days(Today(), $day)));
@@ -34,8 +43,8 @@ for my $month (0 .. $months - 1)
 }
 
 my $dates = join("|", @dates);
-my $match = qr/^${prefix}-\d{4}-\d{2}-\d{2}\./;
-my $keep = qr/^${prefix}-(?:${dates})\./;
+my $match = qr/^${prefix}\d{4}-\d{2}-\d{2}\./;
+my $keep = qr/^${prefix}(?:${dates})\./;
 
 opendir(DIR, "$dir") || die "Can't open ${dir}: $!";