diff options
Diffstat (limited to 'src/scripts/02defaults.sh')
-rw-r--r-- | src/scripts/02defaults.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/scripts/02defaults.sh b/src/scripts/02defaults.sh index faca4769d..aa26f76fe 100644 --- a/src/scripts/02defaults.sh +++ b/src/scripts/02defaults.sh @@ -154,6 +154,12 @@ Defaults () LIVE_MIRROR="http://ftp.debian.org/debian/" fi + # Set debian keyring + if [ -z "${LIVE_REPOSITORY_KEYRING}" ] + then + LIVE_REPOSITORY_KEYRING="debian-archive-keyring" + fi + # Set debian security mirror if [ -z "${LIVE_MIRROR_SECURITY}" ] then @@ -248,4 +254,10 @@ Defaults () then LIVE_SOURCE="no" fi + + # Set disk volume + if [ -z "${LIVE_DISK_VOLUME}" ] + then + LIVE_DISK_VOLUME="Debian Live `date +%Y%m%d`" + fi } |