Added an already running check
[zfs-nexenta/.git] / zfs-scripts.conf.dist
1 ###########################################################################
2 # This is a shell config script included by the other ZFS scripts.
3 # You must copy this file and modify these values to match your system.
4 # Save the resulting file as "zfs-scripts.conf" in this directory.
5 # This will prevent your settings from being overwritten by future updates.
6 ###########################################################################
7
8 # setup your path here to find all the binaries the ZFS scripts call
9 PATH=/usr/sbin:/sbin:/etc/bin:.:$PATH
10
11 # specify the path to the zfs binary
12 zfs=/usr/sbin/zfs
13
14 # specify the path to your command line mailer
15 mailx=/usr/bin/mailx
16
17 # specify the path to the logdir the ZFS scripts should dump their logs to
18 logdir="/var/log/zfs"
19
20 # specify the name of the lockdir used when performing ZFS admin operations
21 lockdir="/tmp/zfs-admin-lock"
22
23 # specify the user to send email reports to
24 mailto=
25
26 # specify the name of the remote server to pull snapshots from to backup locally
27 remote=
28
29 # specify the name of the local pool to store remotely pulled (backup) snapshots to
30 local_pool=
31
32 # when this variable is set, local filesystems will be destroyed
33 # before receiving a full streams into them from the remote source.
34 destroy_local_filesystem_on_full_replicate=0
35
36 # set this to 1 if you want the snapshot script to run in "test" mode (not really take any snaps)
37 SNAP_UNDER_TEST=
38
39 # Specify the maximum run time in minutes that the replicate script can run for (0=no limit)
40 maxruntime=0
41
42 # Setup throttling related parameters that will rate limit the zfs send | zfs receive pipe
43 throttle_enable=0
44 throttle_opt="-v -M 1"
45 throttle=/usr/local/bin/throttle
46
47 # Specify the list of filesystems to replicate from the remote to the local_pool (1 per line)
48 # (enter 1 filesystem per line)
49 filesystems_to_replicate='
50 '
51