aboutsummaryrefslogtreecommitdiffstats
path: root/community/gvmd/lockfile.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/gvmd/lockfile.patch')
-rw-r--r--community/gvmd/lockfile.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/community/gvmd/lockfile.patch b/community/gvmd/lockfile.patch
new file mode 100644
index 00000000000..492675295e9
--- /dev/null
+++ b/community/gvmd/lockfile.patch
@@ -0,0 +1,38 @@
+diff --git a/tools/greenbone-certdata-sync.in b/tools/greenbone-certdata-sync.in
+index 97bccf9..a89a3ce 100644
+--- a/tools/greenbone-certdata-sync.in
++++ b/tools/greenbone-certdata-sync.in
+@@ -494,13 +494,11 @@ then
+ fi
+ (
+ flock -n 9
+- date > $LOCK_FILE
+ if [ $? -eq 1 ] ; then
+ log_notice "Sync in progress, exiting."
+ exit 1
+ fi
+ sync_certdata
+- echo -n > $LOCK_FILE
+-) 9>$LOCK_FILE
++)
+
+ exit 0
+diff --git a/tools/greenbone-scapdata-sync.in b/tools/greenbone-scapdata-sync.in
+index b54e251..7aec26d 100644
+--- a/tools/greenbone-scapdata-sync.in
++++ b/tools/greenbone-scapdata-sync.in
+@@ -517,13 +517,11 @@ then
+ fi
+ (
+ flock -n 9
+- date > $LOCK_FILE
+ if [ $? -eq 1 ] ; then
+ log_notice "Sync in progress, exiting."
+ exit 1
+ fi
+ sync_scapdata
+- echo -n > $LOCK_FILE
+-) 9>$LOCK_FILE
++)
+
+ exit 0