mirror of
https://github.com/Antynea/grub-btrfs.git
synced 2026-03-04 12:56:29 +08:00
19 lines
823 B
Plaintext
19 lines
823 B
Plaintext
# Copyright 2022 Pascal Jaeger
|
|
# Distributed under the terms of the GNU General Public License v3
|
|
|
|
## Where to locate the root snapshots
|
|
snapshots="/.snapshots" # Snapper in the root directory
|
|
#snapshots="/run/timeshift/backup/timeshift-btrfs/snapshots" # Timeshift < v22.06
|
|
|
|
## Optional arguments to run with the daemon
|
|
# Possible options are:
|
|
# -t, --timeshift-auto Automatically detect Timeshifts snapshot directory for timeshift >= 22.06
|
|
# -l, --log-file Specify a logfile to write to
|
|
# -v, --verbose Let the log of the daemon be more verbose
|
|
# -s, --syslog Write to syslog
|
|
# Uncomment the line to activate the option
|
|
optional_args+="--syslog " # write to syslog by default
|
|
#optional_args+="--timeshift-auto "
|
|
#optional_args+="--log-file /var/log/grub-btrfsd.log "
|
|
#optional_args+="--verbose "
|