cmd/audio-player/looper: don't need to deal with stdout to file anymore in rc.local now that we're using the lumberjack logger

This commit is contained in:
Saxon 2020-03-06 18:00:18 +10:30
parent 0d761deed3
commit 94a7c0cb5a
1 changed files with 0 additions and 3 deletions

View File

@ -1,9 +1,6 @@
#!/bin/sh -e
# /etc/rc.local
# This script launches audio looper at boot time
exec 2> /tmp/rc.local.log # send stderr from rc.local to a log file
exec 1>&2 # send stdout to the same log file
printf "rc.local started" # show start of execution
set -x # tell sh to display commands before execution