Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
19 lines
706 B
Diff
19 lines
706 B
Diff
# https://rt.cpan.org/Public/Bug/Display.html?id=75112
|
|
diff --git a/master/lib/Munin/Master/HTMLOld.pm b/master/lib/Munin/Master/HTMLOld.pm
|
|
index 2b6e71f..c0aa2c0 100644
|
|
--- a/master/lib/Munin/Master/HTMLOld.pm
|
|
+++ b/master/lib/Munin/Master/HTMLOld.pm
|
|
@@ -711,10 +711,12 @@ sub emit_main_index {
|
|
|
|
sub copy_web_resources {
|
|
my ($staticdir, $htmldir) = @_;
|
|
+ local $File::Copy::Recursive::KeepMode = 0;
|
|
unless(dircopy($staticdir, "$htmldir/static")){
|
|
ERROR "[ERROR] Could not copy contents from $staticdir to $htmldir";
|
|
die "[ERROR] Could not copy contents from $staticdir to $htmldir";
|
|
}
|
|
+ local $File::Copy::Recursive::KeepMode = 1;
|
|
}
|
|
|
|
sub instanciate_comparison_templates {
|