Added configuration scripts to hold customized options
[zfs-ubuntu/.git] / zfs-scripts.conf
1 ###########################################################################
2 # local configuration file for ZFS scripts
3 ###########################################################################
4
5 # setup your path here to find all the binaries the ZFS scripts call
6 PATH=/usr/sbin:/sbin:/etc/bin:.:$PATH
7
8 # specify the path to the zfs binary
9 zfs=/usr/sbin/zfs
10
11 # specify the path to your command line mailer
12 mailx=/usr/bin/mailx
13
14 # specify the path to the logdir the ZFS scripts should dump their logs to
15 logdir="/var/log/zfs"
16
17 # specify the name of the lockdir used when performing ZFS admin operations
18 lockdir="/tmp/zfs-admin-lock"
19
20 # specify the user to send email reports to
21 mailto="root@pippins.net"
22
23 # specify the name of the remote server to pull snapshots from to backup locally
24 remote="tank.pippins.net"
25
26 # specify the name of the local pool to store remotely pulled (backup) snapshots to
27 local_pool="backups"
28
29 # when this variable is set, local filesystems will be destroyed
30 # before receiving a full streams into them from the remote source.
31 destroy_local_filesystem_on_full_replicate=0
32
33 # set this to 1 if you want the snapshot script to run in "test" mode (not really take any snaps)
34 SNAP_UNDER_TEST=
35
36 # Specify the maximum run time in minutes that the replicate script can run for (0=no limit)
37 maxruntime=0
38
39 # Specify the list of filesystems to replicate from the remote to the local_pool (1 per line)
40 filesystems_to_replicate='
41 naspool/www
42 naspool/git
43 '
44