Skip to content

Commit c0a192d

Browse files
Merge pull request coreos#68 from HuijingHei/fcc-sync
NO-JIRA: Bump fedora-coreos-config
2 parents 5697092 + 1bd794a commit c0a192d

File tree

7 files changed

+48
-8
lines changed

7 files changed

+48
-8
lines changed

common.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ postprocess:
6565
set -xeuo pipefail
6666
source /etc/os-release
6767
# always expect the file to be there, and that it turns on composefs
68-
grep -Pz '\[composefs\]\nenabled = true\n' /usr/lib/ostree/prepare-root.conf
68+
grep -Pz '\[composefs\]\nenabled = yes\n' /usr/lib/ostree/prepare-root.conf
6969
if [[ $VERSION_ID = 9.* ]]; then
70-
sed -i -e 's,enabled = true,enabled = maybe,' /usr/lib/ostree/prepare-root.conf
70+
sed -i -e 's,enabled = yes,enabled = maybe,' /usr/lib/ostree/prepare-root.conf
7171
fi
7272
7373
# Mark the OS as of the CoreOS variant.

fedora-coreos-config

Submodule fedora-coreos-config updated 99 files

kola-denylist.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@
5151
- pattern: ext.config.shared.multipath.resilient
5252
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1937
5353

54+
- pattern: ext.config.shared.kdump.crash
55+
tracker: https://github.com/coreos/rhel-coreos-config/issues/70
56+
osversion:
57+
- rhel-9.6

overlay.d/05rhcos/usr/lib/dracut/modules.d/10ignition-godebug/module-setup.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
33
# ex: ts=8 sw=4 sts=4 et filetype=sh
44

5+
check() {
6+
# If we are in a kdump environment return 255, so this module is only
7+
# included if some other module depends on it
8+
# See: https://github.com/coreos/fedora-coreos-tracker/issues/1832
9+
#
10+
# This module requires integration with the rest of the initramfs, so don't include it by default.
11+
if [[ $IN_KDUMP == 1 ]]; then
12+
return 255
13+
fi
14+
}
15+
516
depends() {
617
echo systemd
718
}

overlay.d/05rhcos/usr/lib/dracut/modules.d/30rhcos-afterburn-checkin/module-setup.sh

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,19 @@
88
# even though things are. Kube will do the actual health handling
99
# for the machine.
1010

11-
depends() {
12-
echo network systemd
11+
check() {
12+
# If we are in a kdump environment return 255, so this module is only
13+
# included if some other module depends on it
14+
# See: https://github.com/coreos/fedora-coreos-tracker/issues/1832
15+
#
16+
# This module requires integration with the rest of the initramfs, so don't include it by default.
17+
if [[ $IN_KDUMP == 1 ]]; then
18+
return 255
19+
fi
1320
}
1421

15-
check() {
16-
return 0
22+
depends() {
23+
echo network systemd
1724
}
1825

1926
install() {

overlay.d/05rhcos/usr/lib/dracut/modules.d/40rhcos-fips/module-setup.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
#!/bin/bash
22

33
check() {
4-
return 0
4+
# If we are in a kdump environment return 255, so this module is only
5+
# included if some other module depends on it
6+
# See: https://github.com/coreos/fedora-coreos-tracker/issues/1832
7+
#
8+
# This module requires integration with the rest of the initramfs, so don't include it by default.
9+
if [[ $IN_KDUMP == 1 ]]; then
10+
return 255
11+
fi
512
}
613

714
depends() {

overlay.d/05rhcos/usr/lib/dracut/modules.d/41rhcos-check-luks-syntax/module-setup.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
#!/bin/bash
22

3+
check() {
4+
# If we are in a kdump environment return 255, so this module is only
5+
# included if some other module depends on it
6+
# See: https://github.com/coreos/fedora-coreos-tracker/issues/1832
7+
#
8+
# This module requires integration with the rest of the initramfs, so don't include it by default.
9+
if [[ $IN_KDUMP == 1 ]]; then
10+
return 255
11+
fi
12+
}
13+
314
install_unit() {
415
local unit="$1"; shift
516
local target="${1:-ignition-complete.target}"; shift

0 commit comments

Comments
 (0)