Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#3 closed enhancement (fixed)

Remove screen dependency

Reported by: Christian Illy Owned by: Christian Illy
Priority: major Component:
Keywords: Cc:

Description (last modified by 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: Stack Overflow - How can I log the stdout of a process started by start-stop-daemon?

Change History (5)

comment:1 by Christian Illy, 11 years ago

Component: Scripts

comment:2 by Christian Illy, 11 years ago

Description: modified (diff)

comment:3 by Christian Illy, 11 years ago

Description: modified (diff)

comment:4 by alloc, 11 years ago

Resolution: fixed
Status: newclosed

In 9:

Fix #1, #2, #3, #5; Refs #4, #6: WD works for save path, not for some logs

comment:5 by Christian Illy, 11 years ago

version: 1
Note: See TracTickets for help on using tickets.