From 44f2d107e1af1993f1dd49cd15f10c2188784440 Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Tue, 12 Dec 2023 00:48:58 +0100 Subject: [PATCH] Sync fs examples and defaults in xen-create-image with values in xen-tools.conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ext3 → ext4 --- NEWS.markdown | 2 ++ bin/xen-create-image | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/NEWS.markdown b/NEWS.markdown index eebe3fd..10991e2 100644 --- a/NEWS.markdown +++ b/NEWS.markdown @@ -20,6 +20,8 @@ Other Changes ------------- * Switch to pure Semantic Versioning including trailing zeros. +* Sync examples for "fs" and "fs" defaults in xen-create-image with + (effective) values in xen-tools.conf: ext3 → ext4 xen-tools 4.9.2 (released 06 Feb 2023) diff --git a/bin/xen-create-image b/bin/xen-create-image index e5a1fd2..8e96d54 100755 --- a/bin/xen-create-image +++ b/bin/xen-create-image @@ -446,7 +446,7 @@ Create a Xen configuration file in so that xm/xl can start the new domain. memory = 128Mb # Memory size maxmem = 512Mb # Memory size swap = 128Mb # Swap size - fs = ext3 # use EXT3 filesystems + fs = ext4 # use EXT4 filesystems dist = stable # Default distribution to install. # @@ -1335,7 +1335,7 @@ sub setupDefaultOptions $CONFIG{ 'arch' } = which('dpkg') ? `dpkg --print-architecture` : ''; chomp($CONFIG{ 'arch' }); - $CONFIG{ 'fs' } = 'ext3'; + $CONFIG{ 'fs' } = 'ext4'; $CONFIG{ 'force' } = 0; $CONFIG{ 'install' } = 1; $CONFIG{ 'hooks' } = 1;