svn commit: r566228 - in head/multimedia/webcamd: . files

Hans Petter Selasky hselasky at FreeBSD.org
Sun Feb 21 15:35:32 UTC 2021


Author: hselasky
Date: Sun Feb 21 15:35:31 2021
New Revision: 566228
URL: https://svnweb.freebsd.org/changeset/ports/566228

Log:
  Fix unintended activation of automatic process already running checks
  after SVN r564686.
  
  Approved by:	pi (implicit)

Modified:
  head/multimedia/webcamd/Makefile
  head/multimedia/webcamd/files/webcamd.in

Modified: head/multimedia/webcamd/Makefile
==============================================================================
--- head/multimedia/webcamd/Makefile	Sun Feb 21 13:21:39 2021	(r566227)
+++ head/multimedia/webcamd/Makefile	Sun Feb 21 15:35:31 2021	(r566228)
@@ -3,7 +3,7 @@
 
 PORTNAME=	webcamd
 DISTVERSION=	5.10.6.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	multimedia
 
 MAINTAINER=	hselasky at FreeBSD.org

Modified: head/multimedia/webcamd/files/webcamd.in
==============================================================================
--- head/multimedia/webcamd/files/webcamd.in	Sun Feb 21 13:21:39 2021	(r566227)
+++ head/multimedia/webcamd/files/webcamd.in	Sun Feb 21 15:35:31 2021	(r566228)
@@ -105,6 +105,13 @@ start_cmd="${name}_start"
 stop_cmd="${name}_stop"
 status_cmd="${name}_status"
 
+#
+# The following pidfile should not exist and
+# allows multiple instances of webcamd to be
+# started.
+#
+pidfile="/var/run/${name}.dummy.pid"
+
 webcamd_pids()
 {
   pids=$(pgrep -d ' ' $name)


More information about the svn-ports-all mailing list