-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(PA-6600) Add Fedora 41 to vanagon defaults
- Loading branch information
1 parent
701cccd
commit bb3657d
Showing
1 changed file
with
17 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
platform 'fedora-41-x86_64' do |plat| | ||
plat.servicedir '/usr/lib/systemd/system' | ||
plat.defaultdir '/etc/sysconfig' | ||
plat.servicetype 'systemd' | ||
plat.dist 'fc41' | ||
|
||
packages = %w[ | ||
autoconf automake bzip2-devel gcc gcc-c++ libselinux-devel | ||
libsepol libsepol-devel make cmake pkgconfig readline-devel | ||
rpmdevtools rsync swig zlib-devel systemtap-sdt-devel | ||
perl-lib perl-FindBin | ||
] | ||
plat.provision_with("/usr/bin/dnf install -y --best --allowerasing #{packages.join(' ')}") | ||
|
||
plat.install_build_dependencies_with '/usr/bin/dnf install -y --best --allowerasing' | ||
plat.vmpooler_template 'fedora-41-x86_64' | ||
end |