[pve-devel] [PATCH zsync] fix #1907: cron entry duplicated on disable/enable

David d.limbeck at proxmox.com
Wed Sep 12 14:26:57 CEST 2018


match only the interval instead of everything in front of every "root"

Signed-off-by: David <d.limbeck at proxmox.com>
---
 pve-zsync | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pve-zsync b/pve-zsync
index 10d6bac..3a137fe 100755
--- a/pve-zsync
+++ b/pve-zsync
@@ -426,7 +426,7 @@ sub format_job {
 	$text = "#";
     }
     if ($line) {
-	$line =~ /^#*(.+) root/;
+	$line =~ /^#*(\*.+\*) root/;
 	$text .= $1;
     } else {
 	$text .= "*/$INTERVAL * * * *";
-- 
2.11.0





More information about the pve-devel mailing list