]> git.wh0rd.org - tt-rss.git/blobdiff - update.php
update_daemon: use getopt; make things a bit more configurable, add help
[tt-rss.git] / update.php
index a92b125e40a6fa9b55ad53cc96f56e8d93d287ab..6850f1fb2cd528449470587c128b5de452408116 100755 (executable)
@@ -29,6 +29,7 @@
                        "task:",
                        "cleanup-tags",
                        "quiet",
+                       "log:",
                        "indexes",
                        "convert-filters",
                        "force-update",
@@ -60,7 +61,6 @@
                exit;
        }
 
-
        if (count($options) == 0 || isset($options["help"]) ) {
                print "Tiny Tiny RSS data update script.\n\n";
                print "Options:\n";
@@ -69,7 +69,8 @@
                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";
                print "  --force-update       - force update of all feeds\n";
 
        define('QUIET', isset($options['quiet']));
 
+       if (isset($options["log"])) {
+               _debug("Logging to " . $options["log"]);
+               define('LOGFILE', $options["log"]);
+       }
+
        if (!isset($options["daemon"])) {
                $lock_filename = "update.lock";
        } else {