From a2b19f17d05810eb20667ced83135a0a4a049940 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 13 Oct 2014 14:37:28 +0200 Subject: [PATCH] Do not use fixed disk identifiers by default This is calling for problems when dealing with multiple disks/installations at the same time that have been installed via grml-debootstrap. Fixes #29 @ github --- config | 4 ++-- grml-debootstrap | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config b/config index 1da03f9..2da5109 100644 --- a/config +++ b/config @@ -211,8 +211,8 @@ # Use fixed disk identifiers for Virtual Machine builds. # Useful for reproducible builds. -# Default: 'yes' -# FIXED_DISK_IDENTIFIERS='no' +# Default: 'no' +# FIXED_DISK_IDENTIFIERS='yes' # Disk identifier when using FIXED_DISK_IDENTIFIERS='yes'. # Use uuid-runtime's uuidgen tool to generate random UUIDs on demand. diff --git a/grml-debootstrap b/grml-debootstrap index 4adb0be..b967baa 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -23,7 +23,7 @@ MNTPOINT="/mnt/debootstrap.$$" [ -n "$DISK_IDENTIFIER" ] || DISK_IDENTIFIER='26ada0c0-1165-4098-884d-aafd2220c2c6' [ -n "$EXTRAPACKAGES" ] || EXTRAPACKAGES='yes' [ -n "$FALLBACK_MIRROR" ] || FALLBACK_MIRROR='http://http.debian.net/debian' -[ -n "$FIXED_DISK_IDENTIFIERS" ] || FIXED_DISK_IDENTIFIERS="yes" +[ -n "$FIXED_DISK_IDENTIFIERS" ] || FIXED_DISK_IDENTIFIERS="no" [ -n "$FORCE" ] || FORCE='' [ -n "$HOSTNAME" ] || HOSTNAME='grml' [ -n "$INITRD" ] || INITRD='yes' -- 2.1.4