Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Apr 2010 15:38:58 GMT
From:      Pascal Stumpf <Pascal.Stumpf@cubes.de>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   misc/146015: multimedia/dvdrip fails to locate fping, making cluster mode unusable
Message-ID:  <201004241538.o3OFcwa0091966@www.freebsd.org>
Resent-Message-ID: <201004241540.o3OFe2nX079126@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004241538.o3OFcwa0091966>