Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.27 KB

daemon.md

File metadata and controls

42 lines (35 loc) · 1.27 KB
title description published date tags editor dateCreated
daemon
true
2022-09-18 05:24:23 UTC
markdown
2022-09-18 04:53:27 UTC

Run FlexGet continuously, executing tasks according to schedules defined in the config file.

Notes

Further information is available about daemon operation.

Sub-commands

Sub-command Option Description
start Starts the daemon
-d, --daemonize Causes process to daemonize after starting
--autoreload-config Automatically reload the config from disk if the daemon detects any changes
--disable-tray-icon Disable the tray icon from loading
stop Shutdown the running daemon
--wait Wait for all queued tasks to finish before stopping daemon
status Check if a daemon is running
reload-config Causes a running daemon to reload the config from disk

examples

#starts the FlexGet daemon
$ flexget daemon start

#starts the FlexGet daemon and daemonizes the process
$ flexget daemon start -d

#stops the FlexGet daemon
$ flexget daemon stop

#stops the FlexGet daemon but waits for all tasks to finish
$ flexget daemon stop --wait