1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-29 14:11:28 +00:00

update_daemon: use getopt; make things a bit more configurable, add help

This commit is contained in:
Andrew Dolgov
2013-03-21 15:05:57 +04:00
parent 2191eb7aab
commit dc24b520cc
2 changed files with 51 additions and 11 deletions

View File

@@ -69,7 +69,7 @@
print " --daemon - start single-process update daemon\n";
print " --task N - create lockfile using this task id\n";
print " --cleanup-tags - perform tags table maintenance\n";
print " --quiet - don't show messages\n";
print " --quiet - don't output messages to stdout\n";
print " --log FILE - log messages to FILE\n";
print " --indexes - recreate missing schema indexes\n";
print " --convert-filters - convert type1 filters to type2\n";
@@ -85,13 +85,13 @@
return;
}
define('QUIET', isset($options['quiet']));
if (isset($options["log"])) {
_debug("Logging to " . $options["log"]);
define('LOGFILE', $options["log"]);
}
define('QUIET', isset($options['quiet']));
if (!isset($options["daemon"])) {
$lock_filename = "update.lock";
} else {