summaryrefslogtreecommitdiff
path: root/update_daemon.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-17 06:33:52 +0100
committerAndrew Dolgov <[email protected]>2008-01-17 06:33:52 +0100
commitcfa43e025cf4246d815a5f1539cd34b461130a9a (patch)
tree46878553faade2228647d512188fdc548bb0e051 /update_daemon.php
parente3b9d084d46c34faad8808d3d3624a7c6826ed93 (diff)
new config option: LOCK_DIRECTORY (bump config version)
Diffstat (limited to 'update_daemon.php')
-rw-r--r--update_daemon.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update_daemon.php b/update_daemon.php
index 0c075da1b..c3210945a 100644
--- a/update_daemon.php
+++ b/update_daemon.php
@@ -35,7 +35,7 @@
error_reporting(DEFAULT_ERROR_LEVEL);
function sigint_handler() {
- unlink("update_daemon.lock");
+ unlink(LOCK_DIRECTORY . "/update_daemon.lock");
die("Received SIGINT. Exiting.\n");
}