vdr/vdr/debian control vdr.init

Tobias Grimm pkg-vdr-dvb-changes@lists.alioth.debian.org
Sat, 10 Jul 2004 19:21:51 +0000


Update of /cvsroot/pkg-vdr-dvb/vdr/vdr/debian
In directory haydn:/tmp/cvs-serv14072

Modified Files:
	control vdr.init 
Log Message:
fixed small typo

Index: control
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/control,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- control	22 May 2004 22:06:53 -0000	1.6
+++ control	10 Jul 2004 19:21:49 -0000	1.7
@@ -8,7 +8,7 @@
 
 Package: vdr
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, vdr-kbd | vdr-lirc | vdr-rcu | vdr-daemon, makedev (>=2.3.1-66)
+Depends: ${shlibs:Depends}, ${misc:Depends}, vdr-kbd | vdr-lirc | vdr-rcu | vdr-daemon, makedev (>=2.3.1-60)
 Description: Video Disk Recorder for DVB cards
  Video Disk Recorder (VDR) is a digital sat-receiver program using
  Linux and DVB technologies. It allows one to record MPEG2 streams,

Index: vdr.init
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/vdr.init,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- vdr.init	10 Jul 2004 18:39:43 -0000	1.20
+++ vdr.init	10 Jul 2004 19:21:49 -0000	1.21
@@ -22,18 +22,18 @@
 
 startvdr() 
 {
-	 if `ps ax | grep "/usr/bin/vdr " | grep -v grep`
-	 then
+    if `ps ax | grep "/usr/bin/vdr " | grep -v grep`
+    then
     	getplugins
     	mergecommands "commands"
     	mergecommands "reccmds"
     	start-stop-daemon --start --quiet \
 	 	--exec /usr/sbin/runvdr -- -v $VIDEO_DIR -c $CFG_DIR -r $REC_CMD \
 	 	-s $SHUTDOWN_CMD $OPTIONS $PLUGINS &
-	else
-		echo -n " - seems to be running allready."
-		exit 1
-	fi
+    else
+	echo -n " - seems to be running already."
+	exit 1
+    fi
 } 
 
 stopvdr()