mirror of
https://github.com/systemd/systemd.git
synced 2025-01-21 22:04:01 +03:00
8c61438bd5
The next commit will introduce a way to iterate on integration tests which depends on btrfs specific features. We leave CentOS on ext4 as its kernel does not support btrfs. (cherry picked from commit edc6592e532806fe9ac28400138d5d4e1492a7d0)
21 lines
696 B
Plaintext
21 lines
696 B
Plaintext
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
[Match]
|
|
Distribution=centos
|
|
|
|
[Distribution]
|
|
Release=10
|
|
|
|
[Content]
|
|
Environment=
|
|
# CentOS doesn't support btrfs so we have to use something else. We'd prefer to use XFS here but it
|
|
# fails to mount on duplicate filesystem UUIDs which happens when running tests in parallel so we use
|
|
# ext4 instead.
|
|
SYSTEMD_REPART_OVERRIDE_FSTYPE_ROOT=ext4
|
|
# The kernel versions in CentOS Stream 9 doesn't support orphan_file, but later versions of
|
|
# mkfs.ext4 enabled it by default, so we disable it explicitly.
|
|
SYSTEMD_REPART_MKFS_OPTIONS_EXT4="-O ^orphan_file"
|
|
|
|
Packages=
|
|
kernel-modules # For squashfs
|