a9a9a29871
Fix description field in galaxy.yml Remove "Technology Preview" from Collection README Merging individual ignore file and add it to the package Add a note to each module Doc to indicate it is private Add patches for network and storage role ansible-test fixes Simplify doc tags in %files, corrects a forgotten doc tag for ha_cluster Suppress one ansible-lint warning in ha_cluster Add patch for the inclusive language leftover on network-role README.md Related: rhbz#1961404
15 lines
818 B
Bash
Executable File
15 lines
818 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
readme_md=${1:-"lsr_role2collection/collection_readme.md"}
|
|
|
|
sed -i -e '/## Currently supported distributions/{:1;/## Dependencies/!{N;b 1};s|.*|## Dependencies|}' \
|
|
-e 's/Linux/Red Hat Enterprise Linux/g' \
|
|
-e 's/Ansible Galaxy/Automation Hub/g' \
|
|
-e 's/fedora\(.\)linux_system_roles/redhat\1rhel_system_roles/g' \
|
|
-e 's/linux-system-roles/rhel-system-roles/g' \
|
|
-e '/## Documentation/{:a;/## Support/!{N;b a};s|.*|## Documentation\nThe official RHEL System Roles documentation can be found in the [Product Documentation section of the Red Hat Customer Portal](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/administration_and_configuration_tasks_using_system_roles_in_rhel/index).\n\n## Support|}' \
|
|
-e 's/
|
|
$//' \
|
|
$readme_md
|