diff options
author | Aaron LI <aly@aaronly.me> | 2018-03-11 09:29:32 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-03-11 09:29:32 +0800 |
commit | 7d63e9711b3aec5dd5e0bf3f5bf5c513a36f9159 (patch) | |
tree | 18023485ae67bcc4df75c1a0bbd79aa2eff8cfe7 | |
parent | be3837910cfea33fb57b2073626be4acdd0bd055 (diff) | |
download | dfly-update-7d63e9711b3aec5dd5e0bf3f5bf5c513a36f9159.tar.bz2 |
Sync dfly-update.conf with dfly-update
-rw-r--r-- | dfly-update.conf | 45 |
1 files changed, 40 insertions, 5 deletions
diff --git a/dfly-update.conf b/dfly-update.conf index 631a3e6..7098bc9 100644 --- a/dfly-update.conf +++ b/dfly-update.conf @@ -2,8 +2,43 @@ # Configurations for `dfly-update` # -# The branch to check for updates: -# * "" : (empty), use the same branch as the installed system -# * "DEVELOPMENT" : track the master/DEVELOPMENT branch -# * "RELEASE" : track the RELEASE branch -UPDATE_BRANCH= +# Base URL to Remote DragonFly BSD images +#URL_BASE="https://mirror-master.dragonflybsd.org" +#URL_MASTER="${URL_BASE}/snapshots/x86_64/images" +#URL_RELEASE="${URL_BASE}/iso-images" + +# Default to track the same branch as the installed system +# * MASTER (i.e., the DEVELOPMENT branch) +# * RELEASE +# * (empty) - same as the local installed branch +#UPDATE_BRANCH= + +# Temporary directory to cache the image, etc, ... +#CACHE_DIR="/var/tmp/${NAME}" + +# Directory to mount the system image +#MNT_DIR="/mnt/${NAME}" + +# Backup directory +#BACK_DIR="/var/backups/${NAME}" + +# Ignored files to be kept from overriding by the upgrade. +#FILES_IGNORE=' +# /boot/loader.conf +# /etc/crypttab +# /etc/fstab +# /etc/group +# /etc/localtime +# /etc/master.passwd +# /etc/passwd +# /etc/pwd.db +# /etc/rc.conf +# /etc/spwd.db +#' + +# Filename suffix for the temporarily backup files to avoid overriding. +#BAK_SUF="__bak__" + +# Filename suffix for newly installed config files that need (manual) +# merge. +#NEW_SUF="__new__" |