-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for upcoming el10 systems
Feature: Allow running the role with EL10 systems Reason: We are preparing to support upcoming EL10 systems, and being able to test on them is of critical importance Result: Users can use the role to manage EL10 systems Signed-off-by: Sergio Correia <scorreia@redhat.com>
- Loading branch information
1 parent
cb082a3
commit c7d77ad
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ galaxy_info: | |
- "7" | ||
- "8" | ||
- "9" | ||
- "10" | ||
|
||
galaxy_tags: | ||
- centos | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SPDX-License-Identifier: MIT | ||
--- | ||
# Put internal variables here with AlmaLinux 10 specific values. | ||
|
||
__nbde_client_packages: | ||
- clevis | ||
- clevis-dracut | ||
- clevis-luks | ||
- clevis-systemd | ||
- iproute | ||
- NetworkManager | ||
|
||
__nbde_client_initramfs_update_cmd: > | ||
dracut -fv --regenerate-all | ||
__nbde_client_dracut_settings: | ||
- kernel_cmdline+=" rd.neednet=1 " | ||
- omit_dracutmodules+=" ifcfg " | ||
|
||
__nbde_client_clear_initrd_netcfg_strategy: networkmanager_config | ||
|
||
# vim:set ts=2 sw=2 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SPDX-License-Identifier: MIT | ||
--- | ||
# Put internal variables here with CentOS 10 specific values. | ||
|
||
__nbde_client_packages: | ||
- clevis | ||
- clevis-dracut | ||
- clevis-luks | ||
- clevis-systemd | ||
- iproute | ||
- NetworkManager | ||
|
||
__nbde_client_initramfs_update_cmd: > | ||
dracut -fv --regenerate-all | ||
__nbde_client_dracut_settings: | ||
- kernel_cmdline+=" rd.neednet=1 " | ||
- omit_dracutmodules+=" ifcfg " | ||
|
||
__nbde_client_clear_initrd_netcfg_strategy: networkmanager_config | ||
|
||
# vim:set ts=2 sw=2 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SPDX-License-Identifier: MIT | ||
--- | ||
# Put internal variables here with Red Hat Enterprise Linux 10 specific values. | ||
|
||
__nbde_client_packages: | ||
- clevis | ||
- clevis-dracut | ||
- clevis-luks | ||
- clevis-systemd | ||
- iproute | ||
- NetworkManager | ||
|
||
__nbde_client_initramfs_update_cmd: > | ||
dracut -fv --regenerate-all | ||
__nbde_client_dracut_settings: | ||
- kernel_cmdline+=" rd.neednet=1 " | ||
- omit_dracutmodules+=" ifcfg " | ||
|
||
__nbde_client_clear_initrd_netcfg_strategy: networkmanager_config | ||
|
||
# vim:set ts=2 sw=2 et: |