Changes between Version 3 and Version 4 of UserGuide/Service/Upstart


Ignore:
Timestamp:
04/27/2012 02:58:47 AM (12 years ago)
Author:
kit
Comment:

Minor tidy up.

Legend:

Unmodified
Added
Removed
Modified
  • UserGuide/Service/Upstart

    v3 v4  
    3333exec start-stop-daemon -S -c $uid:$gid -k $umask -x /usr/bin/deluge-web 
    3434}}} 
     35 * Note: The above umasks grants all users of your system full access to your downloads. 
     36 * Refer to [http://en.wikipedia.org/wiki/Umask#Octal_umasks Wikipedia] for a primer on possible values and their effects. 
    3537 
    3638==== Migration ==== 
     
    4850 
    4951==== Web UI ==== 
    50  * To prevent the web-ui starting automatically after deluge, just remove the 'start on' line from deluge-web.conf. The web-ui can then be started (and stopped) manually with: 
     52 * To prevent the web-ui starting automatically after deluge, just remove the 'start on' line from deluge-web.conf or comment it out by adding a # before it.[[BR]]The web-ui can then be started (and stopped) manually with: 
    5153{{{ 
    5254sudo start deluge-web # sudo stop deluge-web 
     
    6668Edit the init confs like so: 
    6769{{{ 
    68 exec start-stop-daemon -S -c $uid:$gid -x /usr/bin/deluged -- -d -l /var/log/deluge/daemon.log -L warning 
     70exec start-stop-daemon -S -c $uid:$gid -k $umask -x /usr/bin/deluged -- -d -l /var/log/deluge/daemon.log -L warning 
    6971}}} 
    7072{{{ 
    71 exec start-stop-daemon -S -c $uid:$gid -x /usr/bin/deluge-web -- -l /var/log/deluge/web.log -L warning 
     73exec start-stop-daemon -S -c $uid:$gid -k $umask -x /usr/bin/deluge-web -- -l /var/log/deluge/web.log -L warning 
    7274}}}  
    73  * See [wiki:Faq#EnableDelugeLogging Logging] for possible log-levels. 
     75 * Refer to [wiki:Faq#EnableDelugeLogging FAQ] for possible log-levels. 
    7476 
    7577Restart the daemon: