Changeset 5620:88dd28a25bec in roaraudio


Ignore:
Timestamp:
08/09/12 00:31:13 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Updated manpage and bash_completion for roard, see #291

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/man1/roard.1

    r5592 r5620  
    8080A higher memlock level may result in memory allocations problems at runtime and even segfauls on some systems. 
    8181(VM killed processes). Check your current system limits before altering this value. 
     82 
     83.TP 
     84\fB--watchdog\fR 
     85Enable watchdog. This will terminate the daemon if something bad happened and it halted. 
     86 
     87.TP 
     88\fB--watchdog-time TIME\fR 
     89Set watchdog time to TIME (in ms). 
    8290 
    8391.TP 
  • plugins/bash/roaraudio

    r5205 r5620  
    599599    #  The basic options we'll complete. 
    600600    # 
    601     opts_misc="--daemon --verbose --terminate --start --restart --stop --shutdown --realtime --memlock --chroot --setgid --setuid --sysclocksync --location --description --pidfile --log-syslog --script-postdown" 
     601    opts_misc="--daemon --verbose --terminate --start --restart --stop --shutdown --realtime --memlock --chroot --setgid --setuid --sysclocksync --location --description --pidfile --log-syslog --script-postdown --watchdog --watchdog-time" 
    602602    opts_auth="--guest-acclev --trust-acclev --trust-root --no-trust-root --authfile-gen --authfile-load --authfile-type --authfile-acclev --new-authfile" 
    603603    opts_plugins="--plugin-load" 
     
    814814            return 0; 
    815815            ;; 
    816  
     816# Time: 
     817        '--watchdog-time') 
     818            COMPREPLY=($(compgen -W "1000 2000 3000 5000 10000 20000 25000 640000" -- ${cur})) 
     819            return 0; 
     820            ;; 
    817821        *) 
    818822        ;; 
Note: See TracChangeset for help on using the changeset viewer.