]> arthur.barton.de Git - netatalk.git/commitdiff
MFH: Fix path to BDB tools. netatalk-1-6-1
authorjmarcus <jmarcus>
Mon, 17 Feb 2003 02:33:26 +0000 (02:33 +0000)
committerjmarcus <jmarcus>
Mon, 17 Feb 2003 02:33:26 +0000 (02:33 +0000)
bin/cnid/cnid_maint.in

index 83a0eeec6db2fde8e08145371f1c1b8bbb18254f..d7389c56c9bac8d46b30bcefc4a0b5f4576b3c23 100755 (executable)
@@ -3,7 +3,7 @@
 #
 # cnid_maint: A script to maintain the consistency of CNID databases.
 #
-# $Id: cnid_maint.in,v 1.12.2.2 2003-02-16 02:14:07 jmarcus Exp $
+# $Id: cnid_maint.in,v 1.12.2.3 2003-02-17 02:33:26 jmarcus Exp $
 #
 
 use strict;
@@ -32,9 +32,9 @@ $START_CMD = '/usr/local/etc/rc.d/netatalk.sh start';
 # Below is the example of a BSD ps.  A SYSV example is:
 # /bin/ps -eflouid,pid,ppid,comm
 $PS_CMD             = '@PS@ -axouser,pid,ppid,command';
-$DB_STAT            = '@BDB_BIN@bin/db_stat';
-$DB_RECOVER         = '@BDB_BIN@bin/db_recover';
-$DB_VERIFY          = '@BDB_BIN@bin/db_verify';
+$DB_STAT            = '@BDB_BIN@/db_stat';
+$DB_RECOVER         = '@BDB_BIN@/db_recover';
+$DB_VERIFY          = '@BDB_BIN@/db_verify';
 $APPLE_VOLUMES_FILE = '@PKGCONFDIR@/AppleVolumes.default';
 ## End edit section