1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

multimedia/webcamd: Silence prints from rc script when webcamd is disabled.

PR:		259062
Approved by:    pi (implicit)
This commit is contained in:
Hans Petter Selasky 2021-10-12 10:38:15 +02:00
parent c38fddddbe
commit b122121902
2 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= webcamd
DISTVERSIONPREFIX= v
DISTVERSION= 5.13.2.6
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= multimedia
MAINTAINER= hselasky@FreeBSD.org

View File

@ -4,7 +4,7 @@ notify 100 {
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "intclass" "0x0e";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev 2>/dev/null";
};
# Vendor specific USB webcams and DVB devices.
@ -13,7 +13,7 @@ notify 100 {
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "intclass" "0xff";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev 2>/dev/null";
};
# Unspecified USB webcams and DVB devices.
@ -22,7 +22,7 @@ notify 100 {
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "intclass" "0x00";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev 2>/dev/null";
};
# Logitech webcams
@ -33,7 +33,7 @@ notify 100 {
match "vendor" "0x046d";
match "intclass" "0x0a";
match "intsubclass" "0xff";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev 2>/dev/null";
};
# Generic USB input devices.
@ -48,7 +48,7 @@ notify 100 {
# and mouse
#
match "vendor" "0x056a";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface 2>/dev/null";
};
# Elantech touchscreen
@ -60,7 +60,7 @@ notify 100 {
match "vendor" "0x04f3";
match "product" "0x2071";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface 2>/dev/null";
};
# Logitech gamepad
@ -72,6 +72,6 @@ notify 100 {
match "vendor" "0x046d";
match "product" "0xc216|0xc219";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface";
action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface 2>/dev/null";
};