﻿id	summary	reporter	owner	description	type	status	priority	component	resolution	keywords	cc
3	Remove screen dependency	Christian Illy	Christian Illy	"Instead of using screen to allow access to the console output write stdout/errout to log file:
 ssd ... --exec /bin/bash -- -c ""$DAEMON $DAEMON_ARGS > $LOGFILE 2>&1""
Disadvantage: wine won't be stopped on ''ssd stop'' as it would only kill bash!

Better:
 ssd ... --startas /bin/bash -- -c ""exec $DAEMON $DAEMON_ARGS > $LOGFILE 2>&1""

Or, with --no-close:
 ssd ... --no-close --exec $DAEMONWINE -- $BINARYPATH/$BINARYNAME $OPTS > $LOGFILE 2>$1

Also see: [http://stackoverflow.com/questions/8251933/how-can-i-log-the-stdout-of-a-process-started-by-start-stop-daemon Stack Overflow - How can I log the stdout of a process started by start-stop-daemon?]"	enhancement	new	major				
