# Where bbackup should place all its data
stampdir=/var/bbackup

# Who should receive all mail?
ADMIN=johnsmith@localhost

# Numbers of incremental backups before full backups (can be overridden
# manually, of course)
INCBACKUPS=5

# How many tapes do you use
TAPES=7

# Directory and name prefix, where the snapshot file goes to
SNAPSHOTPREFIX=/var/bbackup/snapshot-

# Configuration for full backup
fullbackupdest=/dev/nst0
fullpostbackup=mt -f /dev/nst0 rewoffl

# Configuration for incremental backup
incbackupdest=/mnt/backup/$NUMBER-$FILESYSTEM
# After the last incremental backup, eject the tape!
lastincpostbackup=mt -f /dev/nst0 rewoffl

# Here are all filesystems to be backed up
[/dev/sda1]
preaction=mount /dev/sda1
mountpoint=/mnt/sda1
inccompress=yes
fullexclude=*~
incexclude=*~ *old ./home/johnsmith/nicetrys/*
postaction=umount /dev/sda1

[dosc]   
preaction=mount /dev/sda3 /mnt/dosc
mountpoint=/mnt/dosc
fullcompress=yes
inccompress=yes
postaction=umount /dev/sda3
