[or-cvs] r13820: Fix broken quoting in init script (tor/branches/tor-0_2_0-patches/debian)

weasel at seul.org weasel at seul.org
Mon Mar 3 13:14:33 UTC 2008


Author: weasel
Date: 2008-03-03 08:14:33 -0500 (Mon, 03 Mar 2008)
New Revision: 13820

Modified:
   tor/branches/tor-0_2_0-patches/debian/tor.init
Log:
Fix broken quoting in init script

Modified: tor/branches/tor-0_2_0-patches/debian/tor.init
===================================================================
--- tor/branches/tor-0_2_0-patches/debian/tor.init	2008-03-03 12:48:13 UTC (rev 13819)
+++ tor/branches/tor-0_2_0-patches/debian/tor.init	2008-03-03 13:14:33 UTC (rev 13820)
@@ -90,7 +90,7 @@
 }
 
 check_config () {
-	if ! "$DAEMON --verify-config" > /dev/null; then
+	if ! $DAEMON --verify-config > /dev/null; then
 		echo "ABORTED: Tor configuration invalid:" >&2
 		$DAEMON --verify-config >&2
 		exit 1



More information about the tor-commits mailing list