mirror of https://github.com/digint/btrbk
btrbk.conf: added more documentation for "snapshot_dir" and general info
parent
ca4006589f
commit
92aafb69f0
|
@ -1,6 +1,19 @@
|
||||||
|
#
|
||||||
# Example btrbk configuration file
|
# Example btrbk configuration file
|
||||||
|
#
|
||||||
|
# Note that the options can be overridden in the
|
||||||
|
# volume/subvolume/target sections. Refer to man btrbk.conf(5) for a
|
||||||
|
# more detailed explanation of this.
|
||||||
|
#
|
||||||
|
|
||||||
# Create snapshot into subdirectory
|
# Directory in which the btrfs snapshots are created. Relative to
|
||||||
|
# <volume-directory> of the volume section.
|
||||||
|
# If not set, the snapshots are directly created in:
|
||||||
|
# <volume>/<volume-directory>
|
||||||
|
#
|
||||||
|
# NOTE: btrbk does not autmatically create this directory, and the
|
||||||
|
# snapshot creation will fail if it is not present.
|
||||||
|
#
|
||||||
snapshot_dir _btrbk_snap
|
snapshot_dir _btrbk_snap
|
||||||
|
|
||||||
# Always create snapshots, even if the target volume is unreachable
|
# Always create snapshots, even if the target volume is unreachable
|
||||||
|
@ -40,18 +53,23 @@ receive_log no
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Volume section: "volume <vol_dir>"
|
# Volume section: "volume <volume-directory>"
|
||||||
# <vol_dir>: Directory of a btrfs volume (or subvolume) containing the
|
# <volume-directory> Directory of a btrfs volume (or subvolume)
|
||||||
# subvolume to be backuped (usually the mount-point of a
|
# containing the subvolume to be backuped
|
||||||
# btrfs filesystem mounted with subvolid=0 option)
|
# (usually the mount-point of a btrfs filesystem
|
||||||
|
# mounted with subvolid=0 option)
|
||||||
#
|
#
|
||||||
# Subvolume section: "subvolume <subvol>
|
# Subvolume section: "subvolume <subvolume-name>
|
||||||
# <subvol>: Subvolume to be backuped, relative to <vol_dir> in
|
|
||||||
# volume section
|
# <subvolume-name> Subvolume to be backuped, relative to
|
||||||
|
# <volume-directory> in volume section
|
||||||
#
|
#
|
||||||
# Target section: "target <type> <vol_dir>"
|
# Target section: "target <type> <volume-directory>"
|
||||||
# <type>: Backup type, currently only "send-receive"
|
|
||||||
# <vol_dir>: Directory of a btrfs volume (or subvolume) receiving the backups
|
# <type> Backup type, currently only "send-receive"
|
||||||
|
|
||||||
|
# <volume-directory> Directory of a btrfs volume (or subvolume)
|
||||||
|
# receiving the backups
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# NOTE: The parser does not care about indentation, this is only for
|
# NOTE: The parser does not care about indentation, this is only for
|
||||||
|
|
Loading…
Reference in New Issue