|
NAMEzetaback_agent - client-side component of zetaback.SYNOPSISzetaback_agent -v zetaback_agent -l [-c conf] zetaback_agent -r [-b <timestamp>] [-c conf] [-z zfs] zetaback -f <timestamp> [-c conf] [-z zfs] zetaback -i <timestamp> [-c conf] [-z zfs] zetaback -d <snap> -z <zfs> [-c conf] DESCRIPTIONzetaback_agent handles requests from zetaback and performs the requested operations on a host. Normally zetaback_agent is only called by zetaback and should never need to be invoked directly.OPTIONSThe following options are available:
CONFIGURATIONThe zetaback_agent configuration file contains a pattern list of ZFS filesystems to be backed up. The pattern list is a Perl-compatible regular expression (PCRE). Only one 'pattern=' line is permitted.The pattern acts as a filter to reduce the list of filesystems to be backed up. Further excludes from this list are possible by setting a user property on any filesystem that should not be backed up, even if it matches the pattern: zfs set com.omniti.labs.zetaback:exclude=on pool/fs User properties are available on Solaris 10 8/07 and newer, and on Solaris Express build 48 and newer. Once a pattern and/or exclude properties have been configured on a host, the list of remaining filesystems can be validated by invoking zetaback_agent with the -l option. Excluding inactive boot environmentsThe zetaback_agent configuration file also has an option to not back up filesystems that are part of an alternate/inactive boot environment. To enable this option, add the following to the configuration file:exclude_inactive_be=1 CONFIGURATION EXAMPLESAll ZFS filesystemsThis pattern matches all ZFS filesystems.pattern=. Substring matchThis will match anywhere in the name of the ZFS filesystem. This is helpful for catching all ZFS filesystems in a particular zpool, while excluding any others.pattern=zones Left-anchored namesThis pattern matches all ZFS filesystems whose names begin with 'www'.pattern=^www Specific ZFS filesystemsThis pattern matches specific ZFS filesystems.pattern=(?:data|mirrors|www) Combining with property-based excludeAll filesystems in pool 'zones' except 'foo'pattern=^zones (At a root shell or with pfexec/sudo): zfs set com.omniti.labs.zetaback:exclude=on zones/foo FILES
SEE ALSOzetaback(1)
Visit the GSP FreeBSD Man Page Interface. |