Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
technical:whitepaper:automated_devshm_cleanup [2018-12-12 15:50] – created frey | technical:whitepaper:automated_devshm_cleanup [2018-12-13 13:02] (current) – [Implementation] frey | ||
---|---|---|---|
Line 62: | Line 62: | ||
The '' | The '' | ||
+ | |||
+ | The program has various command line options available: | ||
+ | |||
+ | <code bash> | ||
+ | $ shm-cleanup.py --help | ||
+ | usage: shm-cleanup.py [-h] [-v] [-q] [-n] [--show-log-timestamps] | ||
+ | [--age < | ||
+ | [--log-file < | ||
+ | [--daemon-period < | ||
+ | |||
+ | Cleanup /dev/shm | ||
+ | |||
+ | optional arguments: | ||
+ | -h, --help | ||
+ | -v, --verbose | ||
+ | -q, --quiet | ||
+ | -n, --dry-run | ||
+ | done; this option sets the base verbosity level to | ||
+ | INFO (as in -vv) | ||
+ | --show-log-timestamps, | ||
+ | display timestamps on all messages logged by this | ||
+ | program | ||
+ | --age < | ||
+ | only items older than this will be removed; integer or | ||
+ | floating-point values are acceptable with optional | ||
+ | unit of s/m/h/d (default: d) | ||
+ | --no-special-treatment | ||
+ | do not treat PSM2 and vader segment files any | ||
+ | differently than other files | ||
+ | --log-file < | ||
+ | send all logging to this file instead of to stderr; | ||
+ | timestamps are always enabled when logging to a file | ||
+ | --daemon | ||
+ | --daemon-period < | ||
+ | wake to re-check on the given period; integer or | ||
+ | floating-point values are acceptable with optional | ||
+ | unit of s/m/h/d (default: s) | ||
+ | --pid-file < | ||
+ | in daemon mode, write our pid to this file (default: | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | On systems that lack cron (or a similar timed-execution mechanism), the '' |