Enable Btrfs support

This commit is contained in:
Andrew Lukoshko 2025-05-30 18:06:34 +00:00
commit bbfb5807be

29
config.yaml Normal file
View File

@ -0,0 +1,29 @@
actions:
- replace:
- target: "spec"
find: |
# btrfs is not available on RHEL
%if 0%{?rhel}
%define with_btrfs 0
%endif
replace: |
# btrfs is not available on RHEL
%if 0%{?rhel}
%define with_btrfs 0
%endif
# ... but AlmaLinux restores Btrfs support
%if 0%{?almalinux}
%define with_btrfs 1
%endif
count: 1
- modify_release:
- suffix: ".alma.1"
enabled: true
- changelog_entry:
- name: "Neal Gompa"
email: "ngompa@almalinux.org"
line:
- "AlmaLinux changes: Enable Btrfs support"