1
0

update defaults for proxmox

This commit is contained in:
2020-01-27 14:53:28 -08:00
parent 8b3efac5f7
commit caf9989d26
2 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#! /bin/sh
# change this to the name of your ZFS pool. Or set ZPOOL envvar at runtime
zpool=${ZPOOL:-"zroot"}
zpool=${ZPOOL:-"rpool"}
# name of backup to take
bkname=${1:-"default"}

View File

@ -1,12 +1,13 @@
#! /bin/sh
# change this to the name of your ZFS pool. Or set ZPOOL envvar at runtime
zpool=${ZPOOL:-"zroot"}
zpool=${ZPOOL:-"rpool"}
# names of the DATASETs to exclude (datasets, not mountpoints!)
# can override this list at runtime with EXCLUDES envvar.
# can extend this list at runtime with EXTRA_EXCLUDES envvar.
excludes=${EXCLUDES:-"/usr/ports /usr/src"}
#excludes=${EXCLUDES:-"/usr/ports /usr/src"}
excludes=${EXCLUDES:-""}
# You do not want to edit anything below here