misc/146015: multimedia/dvdrip fails to locate fping, making cluster mode unusable

Pascal Stumpf Pascal.Stumpf at cubes.de
Sat Apr 24 15:40:03 UTC 2010


>Number:         146015
>Category:       misc
>Synopsis:       multimedia/dvdrip fails to locate fping, making cluster mode unusable
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Apr 24 15:40:02 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Pascal Stumpf
>Release:        8-STABLE
>Organization:
>Environment:
>Description:
The program dvdrip-master (needed to run dvdrip in cluster mode) fail to locate fping in /usr/local/sbin (it only looks in /usr/bin and /usr/sbin) and thus fails to start. The problem is in the perl package Video::DVDRip::Cluster::Master in the function check_prerequisites. Apparently, someone did not take portability very important. :/
>How-To-Repeat:

>Fix:
--- Master.pm.orig      2010-04-24 17:24:44.993423292 +0200
+++ Master.pm   2010-04-24 17:25:52.201580088 +0200
@@ -122,7 +122,7 @@
 sub check_prerequisites {
     my $class = shift;

-    foreach my $path ( "/usr/bin", "/usr/sbin" ) {
+    foreach my $path ( "/usr/bin", "/usr/sbin", "/usr/local/sbin" ) {
         if ( -f "$path/fping" and -x "$path/fping" ) {
             $FPING = "$path/fping";
             last;


>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-bugs mailing list