Skip to content
This repository was archived by the owner on May 24, 2024. It is now read-only.

Commit cfafc9e

Browse files
committed
Only set default filesystem to XFS in CentOS
Fedora default filesystem is a messier situation. This makes it easier to inherit Fedora builds. Signed-off-by: Colin Walters <walters@verbum.org>
1 parent eb71457 commit cfafc9e

File tree

5 files changed

+18
-17
lines changed

5 files changed

+18
-17
lines changed

centos-stream-10.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ releasever: stream10
22
variables:
33
distro: "stream10"
44

5-
repos:
6-
- baseos
7-
- appstream
5+
include:
6+
- centos-stream-common.yaml

centos-stream-9.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ releasever: stream9
22
variables:
33
distro: "stream9"
44

5-
repos:
6-
- baseos
7-
- appstream
5+
include:
6+
- centos-stream-common.yaml

centos-stream-common.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
repos:
2+
- baseos
3+
- appstream
4+
5+
# Configuration for bootc
6+
postprocess:
7+
# XFS is our default filesystem
8+
- |
9+
#!/usr/bin/env bash
10+
mkdir -p /usr/lib/bootc/install/
11+
cat > /usr/lib/bootc/install/20-rhel.toml << EOF
12+
[install]
13+
root-fs-type = "xfs"
14+
EOF

tier-0/bootc-config.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
# Configuration for bootc
2-
postprocess:
3-
# XFS is our default filesystem
4-
- |
5-
#!/usr/bin/env bash
6-
mkdir -p /usr/lib/bootc/install/
7-
cat > /usr/lib/bootc/install/20-rhel.toml << EOF
8-
[install]
9-
root-fs-type = "xfs"
10-
EOF

tier-0/manifest.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ remove-from-packages:
5151
include:
5252
- bootc.yaml
5353
- ostree.yaml
54-
- bootc-config.yaml
5554
- initramfs.yaml
5655
- autoupdates.yaml
5756
- basic-fixes.yaml

0 commit comments

Comments
 (0)