commit bbfb5807beeaf2ec49b754569771ecd8e03e70b0 Author: Andrew Lukoshko Date: Fri May 30 18:06:34 2025 +0000 Enable Btrfs support diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..8a68e9a --- /dev/null +++ b/config.yaml @@ -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"