27 lines
793 B
Diff
27 lines
793 B
Diff
From 8ddd89ee8b315d943688021c843c514dc15bd5f9 Mon Sep 17 00:00:00 2001
|
|
From: Tobias Klaus <tk@meskalero.de>
|
|
Date: Fri, 6 Jan 2017 18:33:35 +0100
|
|
Subject: [PATCH] fixes execution from initd script
|
|
|
|
---
|
|
bin/supysonic-watcher | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/bin/supysonic-watcher b/bin/supysonic-watcher
|
|
index 33d5b7e..fd937b3 100755
|
|
--- a/bin/supysonic-watcher
|
|
+++ b/bin/supysonic-watcher
|
|
@@ -24,8 +24,8 @@ from supysonic.watcher import SupysonicWatcher
|
|
|
|
watcher = SupysonicWatcher()
|
|
watcher.stdin_path = '/dev/null'
|
|
-watcher.stdout_path = '/dev/tty'
|
|
-watcher.stderr_path = '/dev/tty'
|
|
+watcher.stdout_path = '/dev/null'
|
|
+watcher.stderr_path = '/dev/null'
|
|
watcher.pidfile_path = '/tmp/supysonic-watcher.pid'
|
|
watcher.pidfile_timeout = 5
|
|
|
|
--
|
|
2.11.0
|
|
|