1
0
mirror of synced 2026-02-26 16:23:27 +00:00

Sync fs examples and defaults in xen-create-image with values in xen-tools.conf

ext3 → ext4
This commit is contained in:
Axel Beckert
2023-12-12 00:48:58 +01:00
parent e5e555404a
commit 44f2d107e1
2 changed files with 4 additions and 2 deletions

View File

@@ -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)

View File

@@ -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;