#!/bin/sh
#
# $Header: /home/kbackup/CVSROOT/KBackup/src/paths,v 1.18 1997/09/19 19:49:25 kbackup Exp $
#
# This file is Copyright (C) 1995 by Karsten Ballder
#				Karsten.Ballueder@stud.uni-karlsruhe.de
#
# Modifications for DEBIAN GNU/Linux
# (C) 1998 Jens Ritter 
#
# It is part of the KBackup package, see the file COPYING for details.
#
#
# These are the names of important programs used by KBackup.
# If KBackup cannot find them, you can specify their absolute
# paths, e.g.  TAR=/usr/gnu/bin/gtar
#
DIALOG=dialog
SED=sed
AFIO=afio
TAR=tar	# this MUST be GNU tar!
DD=dd
GREP=grep
FGREP=fgrep
# on Linux: gtar is called tar
help="`uname`"
if [ "$help" = "Linux" ] ; then TAR=tar; fi
#
# default directories as recommended by installation program:
#
progdir=/usr/sbin
srcdir=/usr/lib/kbackup
kbackdir=/var/lib/kbackup
datadir=/var/lib/kbackup/Data
docdir=/usr/share/doc/kbackup
mandir=/usr/share/man/man1

# settings added by kbinstall:
datadir="/var/lib/kbackup/Data"
docdir="/usr/share/doc/kbackup"
progdir="/usr/sbin"
srcdir="/usr/lib/kbackup"
kbackdir="/var/lib/kbackup"
mandir="/usr/share/man/man1"

