2023-04-06 20:11:23 +00:00
# NOTE: ansible-core is in rhel-8.6 and newer, but not installable
# in buildroot as it depended on modular Python.
# It has been installable at buildtime in 8.8 and newer.
2022-11-08 01:53:06 +00:00
%if 0%{?fedora}
BuildRequires : ansible-packaging
2021-12-09 18:51:08 +00:00
%else
2023-04-06 20:11:23 +00:00
%if 0%{?rhel} >= 8
2022-11-08 01:53:06 +00:00
BuildRequires : ansible-core >= 2.11.0
2021-12-09 18:51:08 +00:00
%endif
2021-02-22 22:36:10 +00:00
%endif
2021-03-17 00:39:28 +00:00
%bcond_with collection_artifact
2021-06-10 21:05:56 +00:00
%if 0%{?fedora} || 0%{?rhel} >= 8
%bcond_without html
%else
# pandoc is not supported in rhel 7 and older,
# which is needed for converting .md to .html.
%bcond_with html
%endif
2021-02-22 22:36:10 +00:00
%if 0%{?rhel}
Name : rhel-system-roles
%else
Name : linux-system-roles
%endif
2021-06-10 09:49:50 +00:00
Url : https://github.com/linux-system-roles
2021-02-22 22:36:10 +00:00
Summary : Set of interfaces for unified system management
2023-04-06 20:11:23 +00:00
Version : 1.22.0
2023-06-23 14:39:32 +00:00
Release : 0.13%{?dist}
2021-02-22 22:36:10 +00:00
2021-10-26 15:36:55 +00:00
License : GPLv3+ and MIT and BSD and Python
2021-02-22 22:36:10 +00:00
%global _pkglicensedir %{_licensedir} /%{name}
2022-11-08 01:53:06 +00:00
%global roleinstprefix %{name} .
2021-02-22 22:36:10 +00:00
%if 0%{?rhel}
%global collection_namespace redhat
%global collection_name rhel_system_roles
%else
%global collection_namespace fedora
%global collection_name linux_system_roles
%endif
%global collection_version %{version}
2022-11-08 01:53:06 +00:00
# be compatible with the usual Fedora Provides:
Provides : ansible-collection-%{collection_namespace} -%{collection_name} = %{collection_version} -%{release}
2021-06-10 21:05:56 +00:00
2022-02-03 20:34:38 +00:00
# ansible-core is in rhel 8.6 and later - default to ansible-core, but allow
# the use of ansible if present - we may revisit this if the automatic dependency
# generator is added to ansible-core in RHEL
# Fedora - the automatic generator will add this - no need to explicit declare
# it in the spec file
# EL7 - no dependency on ansible because there is no ansible in el7 - user is
# responsible for knowing they have to install ansible
%if 0%{?rhel} >= 8
Requires : (ansible-core >= 2.11.0 or ansible >= 2.9.0)
%endif
2021-02-22 22:36:10 +00:00
# For each role, call either defcommit() or deftag(). The other macros
# (%%id and %%shortid) can be then used in the same way in both cases.
# This way the rest of the spec file des not need to know whether we are
# dealing with a tag or a commit.
%global archiveext tar.gz
# list of role names
%global rolenames %nil
# list of assignments that can be used to populate a bash associative array variable
%global rolestodir %nil
%define getarchivedir() %(p=%{basename:%{S:%{1}}}; echo ${p%%.%{archiveext}})
%define defcommit() %{expand:%%global ref%{1} %{2}
%%global shortcommit%{1} %%(c=%%{ref%{1}}; echo ${c:0:7})
%%global extractdir%{1} %%{expand:%%getarchivedir %{1}}
%%{!?repo%{1}:%%global repo%{1} %%{rolename%{1}}}
2021-06-10 09:49:50 +00:00
%%global archiveurl%{1} %%{?forgeorg%{1}}%%{!?forgeorg%{1}:%%{url} }/%%{repo%{1}}/archive/%%{ref%{1}}/%%{repo%{1}}-%%{ref%{1}}.tar.gz
2021-02-22 22:36:10 +00:00
%%global rolenames %%{?rolenames} %%{rolename%{1}}
%%global roletodir%{1} [%{rolename%{1}}]=" % { e x t r a c t d i r % { 1 } } "
%%global rolestodir %%{?rolestodir} %{roletodir%{1}}
}
%define deftag() %{expand:%%global ref%{1} %{2}
%%global extractdir%{1} %%{expand:%%getarchivedir %{1}}
%%{!?repo%{1}:%%global repo%{1} %%{rolename%{1}}}
2021-06-10 09:49:50 +00:00
%%global archiveurl%{1} %%{?forgeorg%{1}}%%{!?forgeorg%{1}:%%{url} }/%%{repo%{1}}/archive/%%{ref%{1}}/%%{repo%{1}}-%%{ref%{1}}.tar.gz
2021-02-22 22:36:10 +00:00
%%global rolenames %%{?rolenames} %%{rolename%{1}}
%%global roletodir%{1} [%{rolename%{1}}]=" % { e x t r a c t d i r % { 1 } } "
%%global rolestodir %%{?rolestodir} %%{roletodir%{1}}
}
2023-05-23 21:42:31 +00:00
%global mainid 2957cf9e236e17f522e3033d77e344e962d37d2c
2023-01-16 22:48:54 +00:00
Source : %{url} /auto-maintenance/archive/%{mainid} /auto-maintenance-%{mainid} .tar.gz
# BEGIN AUTOGENERATED SOURCES
2021-02-22 22:36:10 +00:00
%global rolename1 postfix
2023-05-23 21:42:31 +00:00
%deftag 1 1.3.7
2021-02-22 22:36:10 +00:00
%global rolename2 selinux
2023-06-06 22:54:09 +00:00
%deftag 2 1.6.0
2021-02-22 22:36:10 +00:00
%global rolename3 timesync
2023-04-06 20:11:23 +00:00
%deftag 3 1.7.5
2021-02-22 22:36:10 +00:00
%global rolename4 kdump
2023-06-20 19:00:50 +00:00
%deftag 4 1.3.1
2021-02-22 22:36:10 +00:00
%global rolename5 network
2023-06-06 22:54:09 +00:00
%deftag 5 1.12.0
2021-02-22 22:36:10 +00:00
%global rolename6 storage
2023-06-22 17:42:46 +00:00
%deftag 6 1.12.0
2021-02-22 22:36:10 +00:00
%global rolename7 metrics
2023-05-23 21:42:31 +00:00
%deftag 7 1.8.5
2021-02-22 22:36:10 +00:00
%global rolename8 tlog
2023-05-23 21:42:31 +00:00
%deftag 8 1.2.15
2021-02-22 22:36:10 +00:00
%global rolename9 kernel_settings
2023-05-23 21:42:31 +00:00
%deftag 9 1.1.16
2021-02-22 22:36:10 +00:00
%global rolename10 logging
2023-05-23 21:42:31 +00:00
%deftag 10 1.11.8
2021-02-22 22:36:10 +00:00
%global rolename11 nbde_server
2023-05-31 00:51:50 +00:00
%deftag 11 1.3.7
2021-02-22 22:36:10 +00:00
%global rolename12 nbde_client
2023-04-06 20:11:23 +00:00
%deftag 12 1.2.13
2021-02-22 22:36:10 +00:00
%global rolename13 certificate
2023-05-23 21:42:31 +00:00
%deftag 13 1.1.12
2021-02-22 22:36:10 +00:00
%global rolename14 crypto_policies
2023-05-23 21:42:31 +00:00
%deftag 14 1.2.10
2021-02-22 22:36:10 +00:00
2021-06-10 09:49:50 +00:00
%global forgeorg15 https://github.com/willshersystems
2021-02-22 22:36:10 +00:00
%global repo15 ansible-sshd
%global rolename15 sshd
2023-04-06 20:11:23 +00:00
%deftag 15 v0.19.0
2021-02-22 22:36:10 +00:00
%global rolename16 ssh
2023-06-23 14:39:32 +00:00
%deftag 16 1.2.0
2021-02-22 22:36:10 +00:00
%global rolename17 ha_cluster
2023-05-23 21:42:31 +00:00
%deftag 17 1.9.3
2021-02-22 22:36:10 +00:00
2021-04-01 22:24:03 +00:00
%global rolename18 vpn
2023-05-23 21:42:31 +00:00
%deftag 18 1.5.7
2021-12-09 18:51:08 +00:00
%global rolename19 firewall
2023-06-23 14:39:32 +00:00
%deftag 19 1.4.5
2021-04-01 22:24:03 +00:00
2021-12-09 18:51:08 +00:00
%global rolename20 cockpit
2023-05-23 21:42:31 +00:00
%deftag 20 1.4.6
2021-12-09 18:51:08 +00:00
2022-11-16 22:38:57 +00:00
%global rolename21 podman
2023-05-23 21:42:31 +00:00
%deftag 21 1.1.6
2022-11-16 22:38:57 +00:00
2022-12-02 14:27:52 +00:00
%global rolename22 ad_integration
2023-06-08 01:51:13 +00:00
%deftag 22 1.1.2
2023-01-16 22:48:54 +00:00
2023-03-14 22:38:34 +00:00
%global rolename23 rhc
2023-06-06 22:54:09 +00:00
%deftag 23 1.2.1
2022-12-02 14:27:52 +00:00
2023-02-03 22:49:37 +00:00
%global rolename24 journald
2023-05-23 21:42:31 +00:00
%deftag 24 1.0.4
2023-04-06 20:11:23 +00:00
%global rolename25 postgresql
2023-05-23 21:42:31 +00:00
%deftag 25 1.0.4
2023-02-03 22:49:37 +00:00
2021-02-22 22:36:10 +00:00
Source1 : %{archiveurl1}
Source2 : %{archiveurl2}
Source3 : %{archiveurl3}
Source4 : %{archiveurl4}
Source5 : %{archiveurl5}
Source6 : %{archiveurl6}
Source7 : %{archiveurl7}
Source8 : %{archiveurl8}
Source9 : %{archiveurl9}
Source10 : %{archiveurl10}
Source11 : %{archiveurl11}
Source12 : %{archiveurl12}
Source13 : %{archiveurl13}
Source14 : %{archiveurl14}
Source15 : %{archiveurl15}
Source16 : %{archiveurl16}
Source17 : %{archiveurl17}
2021-04-01 22:24:03 +00:00
Source18 : %{archiveurl18}
2021-12-09 18:51:08 +00:00
Source19 : %{archiveurl19}
Source20 : %{archiveurl20}
2022-11-16 22:38:57 +00:00
Source21 : %{archiveurl21}
2022-12-02 14:27:52 +00:00
Source22 : %{archiveurl22}
2023-03-14 22:38:34 +00:00
Source23 : %{archiveurl23}
2023-02-03 22:49:37 +00:00
Source24 : %{archiveurl24}
2023-04-06 20:11:23 +00:00
Source25 : %{archiveurl25}
2023-01-16 22:48:54 +00:00
# END AUTOGENERATED SOURCES
2021-02-22 22:36:10 +00:00
2023-01-16 22:48:54 +00:00
# Includes with definitions/tags that differ between RHEL and Fedora
Source1001 : extrasources.inc
2022-08-04 14:41:55 +00:00
2023-01-16 22:48:54 +00:00
%include %{SOURCE1001}
Rebase to latest upstream
- Support ansible-core and improve roles:
- selinux: Add support for Rocky Linux 8, fix
ansible_distribution_major_version
- timesync: Support ansible-core, use ansible_managed | comment
- kdump: Support ansible-core, use ansible_managed | comment
- network: Support ansible-core; deprecate RHEL 9 in readme; validate
that ipv6_disabled is conflicting with other settings; specify PCI
address to configure profile - adds match and path settings)
- storage: Support ansible-core, add skip checks feature to speed up
the tests
- logging: Support ansible-core, add the `uid` option for
elasticsearch, improve performance, use ansible_manged | comment
Resolves: rhbz#1990490 (EL9)
- ssh: Use ansible_manged | comment
- sshd: Use ansible_managed | comment
- ha_cluster: Support ansible-core, fix password_hash salt length
- vpn: Support ansible-core, use wait_for_connection instead of
wait_for with ssh
- ansible_managed | comment BZs:
Resolves: rhbz#2006230 (EL9)
- untar the collection tarballs and copy the files
- Add vendoring code for rhel / centos
- selinux: selinux, seboolean, seport, selogin, sefcontext
- storage: mount
- vpn: ipaddr
Resolves: rhbz#2006076 (EL9)
2021-10-11 09:32:49 +00:00
2023-04-06 20:11:23 +00:00
# Includes with ansible_collection_build/_install that differ between RHEL versions
Source1002 : ansible-packaging.inc
%include %{SOURCE1002}
Source1003 : vendoring-prep.inc
Source1004 : vendoring-build.inc
2023-01-16 22:48:54 +00:00
Source995 : CHANGELOG.md
2022-11-15 21:30:38 +00:00
2021-02-22 22:36:10 +00:00
BuildArch : noarch
2021-06-10 21:05:56 +00:00
%if %{with html}
2021-05-10 13:21:58 +00:00
# Requirements for md2html.sh to build the documentation
%if 0%{?fedora} || 0%{?rhel} >= 9
BuildRequires : rubygem-kramdown-parser-gfm
%else
2021-02-22 22:36:10 +00:00
BuildRequires : pandoc
2021-05-10 13:21:58 +00:00
BuildRequires : asciidoc
2021-02-22 22:36:10 +00:00
BuildRequires : highlight
2021-05-10 13:21:58 +00:00
%endif
2021-06-10 21:05:56 +00:00
%endif
2021-05-10 13:21:58 +00:00
# Requirements for galaxy_transform.py
2021-02-22 22:36:10 +00:00
BuildRequires : python3
2022-11-08 01:53:06 +00:00
BuildRequires : python%{python3_pkgversion} -ruamel-yaml
2023-05-23 21:42:31 +00:00
# Requirements for release_collection.py
BuildRequires : python3-setuptools
2021-02-22 22:36:10 +00:00
2022-11-08 01:53:06 +00:00
# We must put %%description within the if block to avoid empty lines showing up.
2021-02-22 22:36:10 +00:00
%if 0%{?rhel}
%description
Collection of Ansible roles and modules that provide a stable and
consistent configuration interface for managing multiple versions
of Red Hat Enterprise Linux.
%else
%description
Collection of Ansible roles and modules that provide a stable and
consistent configuration interface for managing multiple versions
of Fedora, Red Hat Enterprise Linux & CentOS.
%endif
2021-03-17 00:39:28 +00:00
%if %{with collection_artifact}
%package collection-artifact
Summary : Collection artifact to import to Automation Hub / Ansible Galaxy
%description collection-artifact
Collection artifact for %{name} . This package contains %{collection_namespace} -%{collection_name} -%{version} .tar.gz
%endif
2022-11-15 21:30:38 +00:00
# Fix issue with package update introduce with changing symlink to directory
# in 1.21.1-5
%pretrans -p <lua>
roles = {
" c e r t i f i c a t e " , " c o c k p i t " , " c r y p t o _ p o l i c i e s " , " f i r e w a l l " , " h a _ c l u s t e r " ,
" k d u m p " , " k e r n e l _ s e t t i n g s " , " l o g g i n g " , " m e t r i c s " , " n b d e _ c l i e n t " ,
" n b d e _ s e r v e r " , " n e t w o r k " , " p o s t f i x " , " s e l i n u x " , " s s h " , " s s h d " , " s t o r a g e " ,
" t i m e s y n c " , " t l o g " , " v p n "
}
for i,v in ipairs(roles) do
path = " / u s r / s h a r e / a n s i b l e / r o l e s / l i n u x - s y s t e m - r o l e s . " .. v
st = posix.stat(path)
if st and st.type == " l i n k " then
os.remove(path)
end
end
2021-02-22 22:36:10 +00:00
%prep
2023-01-16 22:48:54 +00:00
# BEGIN AUTOGENERATED SETUP
2023-04-06 20:11:23 +00:00
%setup -q -a1 -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -n %{getarchivedir 0}
2023-01-16 22:48:54 +00:00
# END AUTOGENERATED SETUP
2021-02-22 22:36:10 +00:00
2023-04-06 20:11:23 +00:00
# vendoring prep steps, if any
%include %{SOURCE1003}
Rebase to latest upstream
- Support ansible-core and improve roles:
- selinux: Add support for Rocky Linux 8, fix
ansible_distribution_major_version
- timesync: Support ansible-core, use ansible_managed | comment
- kdump: Support ansible-core, use ansible_managed | comment
- network: Support ansible-core; deprecate RHEL 9 in readme; validate
that ipv6_disabled is conflicting with other settings; specify PCI
address to configure profile - adds match and path settings)
- storage: Support ansible-core, add skip checks feature to speed up
the tests
- logging: Support ansible-core, add the `uid` option for
elasticsearch, improve performance, use ansible_manged | comment
Resolves: rhbz#1990490 (EL9)
- ssh: Use ansible_manged | comment
- sshd: Use ansible_managed | comment
- ha_cluster: Support ansible-core, fix password_hash salt length
- vpn: Support ansible-core, use wait_for_connection instead of
wait_for with ssh
- ansible_managed | comment BZs:
Resolves: rhbz#2006230 (EL9)
- untar the collection tarballs and copy the files
- Add vendoring code for rhel / centos
- selinux: selinux, seboolean, seport, selogin, sefcontext
- storage: mount
- vpn: ipaddr
Resolves: rhbz#2006076 (EL9)
2021-10-11 09:32:49 +00:00
2021-02-22 22:36:10 +00:00
declare -A ROLESTODIR=(%{rolestodir} )
for rolename in %{rolenames} ; do
2021-05-24 19:29:57 +00:00
dir_from_archive=" $ { R O L E S T O D I R [ $ { r o l e n a m e } ] } "
if [ ! -d " $ d i r _ f r o m _ a r c h i v e " ]; then
# ansible-sshd uses tags like vX.Y.Z
# using the github archive/ link with a tag like this strips
# the leading v from the tag used to construct the directory
# name in the archive
if [[ " $ d i r _ f r o m _ a r c h i v e " =~ %{repo15} -v([0-9]+[.][0-9]+.*) ]]; then
dir_from_archive=" %{repo15} - $ { B A S H _ R E M A T C H [ 1 ] } "
fi
fi
mv " $ d i r _ f r o m _ a r c h i v e " ${rolename}
2021-02-22 22:36:10 +00:00
done
2023-01-16 22:48:54 +00:00
%if 0%{?rhel}
2021-08-21 19:43:19 +00:00
cd %{rolename2} /tests
# this test causes avcs we want to ignore
sed -r -i -e '/hosts: all/a\
tags:\
- tests::avc' tests_selinux_disabled.yml
cd ../..
2023-01-16 22:48:54 +00:00
%endif
2022-11-15 21:30:38 +00:00
2021-02-22 22:36:10 +00:00
cd %{rolename15}
2022-04-28 00:47:49 +00:00
find -P tests examples -name \*.yml | while read file; do
2023-04-06 20:11:23 +00:00
sed -r -i -e " s / w i l l s h e r s y s t e m s : a n s i b l e - s s h d / s y s t e m _ r o l e : s s h d / " \
-e " s / a n s i b l e - s s h d / l i n u x - s y s t e m - r o l e s . s s h d / " \
2022-04-28 00:47:49 +00:00
-e " s / w i l l s h e r s y s t e m s . s s h d / l i n u x - s y s t e m - r o l e s . s s h d / " " $ f i l e "
done
sed -r -i -e " s / w i l l s h e r s y s t e m s . s s h d / l i n u x - s y s t e m - r o l e s . s s h d / " README.md
2023-04-06 20:11:23 +00:00
sed -r -i -e 's/min_ansible_version: 2.8/min_ansible_version: "2.9"/' meta/main.yml
2021-02-22 22:36:10 +00:00
cd ..
2021-12-09 18:51:08 +00:00
cd %{rolename7}
# metrics roles dir is a symlink to the vendored dir.
# rpm upgrade doesn't like the symlink. Replace the
# symlink with the real dir
rolesdir=$(pwd)/roles
realrolesdir=$(realpath " $ r o l e s d i r " )
if [ " $ r o l e s d i r " != " $ r e a l r o l e s d i r " ]; then
rm -rf roles
mv " $ r e a l r o l e s d i r " .
rm -rf vendor
fi
cd ..
2023-04-06 20:11:23 +00:00
# vendoring build steps, if any
%include %{SOURCE1004}
2021-02-22 22:36:10 +00:00
# Removing symlinks in tests/roles
for rolename in %{rolenames} ; do
if [ -d ${rolename}/tests/roles ]; then
find ${rolename}/tests/roles -type l -exec rm {} \;
if [ -d ${rolename}/tests/roles/linux-system-roles.${rolename} ]; then
rm -r ${rolename}/tests/roles/linux-system-roles.${rolename}
fi
fi
done
rm %{rolename5} /tests/modules
rm %{rolename5} /tests/module_utils
rm %{rolename5} /tests/playbooks/roles
2021-06-10 21:05:56 +00:00
# Drop network/{scripts/print_all_options.py,tests/ensure_provider_tests.py}
# from rpm. These 2 files fail in brp-python-bytecompile due to f-strings
# when python2 is default python.
rm %{rolename5} /scripts/print_all_options.py
rm %{rolename5} /tests/ensure_provider_tests.py
2021-07-28 21:55:20 +00:00
# Drop storage tests/scripts
rm -rf %{rolename6} /tests/scripts
2021-02-22 22:36:10 +00:00
2023-04-06 20:11:23 +00:00
# fix system_roles fingerprint in "external" roles
python3 lsr_fingerprint.py
2021-02-22 22:36:10 +00:00
# transform ambiguous #!/usr/bin/env python shebangs to python3 to stop brp-mangle-shebangs complaining
find -type f -executable -name '*.py' -exec \
sed -i -r -e '1s@^(#! */usr/bin/env python)(\s|$)@#\13\2@' '{}' +
%build
2023-05-23 21:42:31 +00:00
# remove upstream-only documentation - for example, documentation
# about collection dependencies is not needed in Fedora and EL RPMs
# since the dependencies are already provided
sed -e '/^## Requirements/,/^#/s/^See below$/None/' \
-e '/^### Collection requirements/,/^#/ {/^### Collection/d;/^#/!d}' \
-i */README.md
2021-06-10 21:05:56 +00:00
%if %{with html}
2023-04-06 20:11:23 +00:00
# HACK HACK HACK
# pandoc/asciidoc on rhel 8.9 does not like the journald README badge links
# remove all of the badge links from all README.md files
# in the first 14 lines of the file, remove any line that looks like a
# github action badge
# HACK HACK HACK
2021-04-01 22:19:15 +00:00
readmes=" "
2023-04-06 20:11:23 +00:00
matchstr=" a c t i o n s / w o r k f l o w s / "
2021-04-01 22:19:15 +00:00
for role in %{rolenames} ; do
2023-04-06 20:11:23 +00:00
sed -e " 1 , 1 4 { \\ , $ { m a t c h s t r } , d ; / \ ! \ [ / d } " -i $role/README.md
2021-04-01 22:19:15 +00:00
readmes=" $ { r e a d m e s } $ r o l e / R E A D M E . m d "
done
sh md2html.sh $readmes
2021-06-10 21:05:56 +00:00
%endif
2021-02-22 22:36:10 +00:00
mkdir .collections
%if 0%{?rhel}
# Convert the upstream collection readme to the downstream one
%{SOURCE998} lsr_role2collection/collection_readme.md
2023-04-06 20:11:23 +00:00
%{python3} ./galaxy_transform.py " %{collection_namespace} " " %{collection_name} " " %{collection_version} " \
2021-12-09 18:51:08 +00:00
" R e d H a t E n t e r p r i s e L i n u x S y s t e m R o l e s A n s i b l e C o l l e c t i o n " \
" h t t p s : / / l i n u x - s y s t e m - r o l e s . g i t h u b . i o " \
" h t t p s : / / a c c e s s . r e d h a t . c o m / d o c u m e n t a t i o n / e n - u s / r e d _ h a t _ e n t e r p r i s e _ l i n u x / 8 / h t m l / a d m i n i s t r a t i o n _ a n d _ c o n f i g u r a t i o n _ t a s k s _ u s i n g _ s y s t e m _ r o l e s _ i n _ r h e l " \
" h t t p s : / / a c c e s s . r e d h a t . c o m / a r t i c l e s / 3 0 5 0 1 0 1 " \
" h t t p s : / / b u g z i l l a . r e d h a t . c o m / e n t e r _ b u g . c g i ? p r o d u c t = R e d % 2 0 H a t % 2 0 E n t e r p r i s e % 2 0 L i n u x % 2 0 8 & c o m p o n e n t = r h e l - s y s t e m - r o l e s " \
> galaxy.yml.tmp
2022-02-08 18:06:18 +00:00
# we vendor-in all of the dependencies on rhel, so remove them
2022-01-17 23:43:55 +00:00
rm -f lsr_role2collection/collection_requirements.txt
# but leave bindep.txt
2021-12-09 18:51:08 +00:00
%else
./galaxy_transform.py " %{collection_namespace} " " %{collection_name} " " %{collection_version} " \
" L i n u x S y s t e m R o l e s A n s i b l e C o l l e c t i o n " \
> galaxy.yml.tmp
2021-02-22 22:36:10 +00:00
%endif
mv galaxy.yml.tmp galaxy.yml
2021-12-09 18:51:08 +00:00
includes=" "
2021-04-05 23:13:32 +00:00
for role in %{rolenames} ; do
2021-12-09 18:51:08 +00:00
includes=" $ i n c l u d e s - - i n c l u d e $ r o l e "
2022-02-08 18:06:18 +00:00
%if 0%{?rhel}
# we vendor-in all of the dependencies on rhel, so remove them
2022-11-15 21:30:38 +00:00
rm -f " $ r o l e / m e t a / r e q u i r e m e n t s . y m l " " $ r o l e / m e t a / c o l l e c t i o n - r e q u i r e m e n t s . y m l " \
" $ r o l e / t e s t s / c o l l e c t i o n - r e q u i r e m e n t s . y m l "
2022-02-08 18:06:18 +00:00
%endif
2021-02-22 22:36:10 +00:00
done
2022-11-08 01:53:06 +00:00
# do not process changelogs on RHEL
%if 0%{?rhel}
extra_mapping=" - - e x t r a - m a p p i n g f e d o r a . l i n u x _ s y s t e m _ r o l e s : %{collection_namespace} . %{collection_name} "
%else
extra_mapping=" "
%endif
2023-04-06 20:11:23 +00:00
LANG=C.utf-8 LC_ALL=C.utf-8 %{python3} release_collection.py --galaxy-yml galaxy.yml \
2021-12-09 18:51:08 +00:00
--src-path $(pwd) --dest-path $(pwd)/.collections $includes --force --no-update \
2022-11-08 01:53:06 +00:00
--src-owner %{name} --skip-git --skip-check --skip-changelog $extra_mapping --debug
2021-12-09 18:51:08 +00:00
2021-05-21 15:35:11 +00:00
# Remove table of contents from logging README.md
# It is not needed for html and AH/Galaxy
sed -i -e 's/^\(## Table of Contents\)/## Background\n\1/' \
.collections/ansible_collections/%{collection_namespace} /%{collection_name} /roles/logging/README.md
sed -i -e '/^## Table of Contents/,/^## Background/d' \
.collections/ansible_collections/%{collection_namespace} /%{collection_name} /roles/logging/README.md
# Remove internal links from readme files
# They are not rendered properly on AH.
for role in %{rolenames} ; do
2021-05-24 19:29:57 +00:00
sed -r -i -e 's/\[([^[]+)\]\(#[^)]+\)/\1/g' \
2021-05-21 15:35:11 +00:00
.collections/ansible_collections/%{collection_namespace} /%{collection_name} /roles/$role/README.md
done
2023-01-16 22:48:54 +00:00
# Remove test only collection dependencies
# NOTE: These should not be in meta/collection-requirements.yml, they should be
# in tests/collection-requirements.yml, but they can't be moved yet
sed -i -e '/community[.]mysql:/d' -e '/community[.]postgresql:/d' \
.collections/ansible_collections/%{collection_namespace} /%{collection_name} /galaxy.yml
2022-11-08 01:53:06 +00:00
cp %{SOURCE995} \
2022-08-04 14:41:55 +00:00
.collections/ansible_collections/%{collection_namespace} /%{collection_name} /docs/CHANGELOG.md
2023-01-16 22:48:54 +00:00
%if 0%{?rhel}
2022-11-08 01:53:06 +00:00
cp %{SOURCE996} \
.collections/ansible_collections/%{collection_namespace} /%{collection_name} /CHANGELOG.rst
2022-08-04 14:41:55 +00:00
%endif
2022-11-08 01:53:06 +00:00
# Build the collection
pushd .collections/ansible_collections/%{collection_namespace} /%{collection_name} /
%ansible_collection_build
popd
2021-02-22 22:36:10 +00:00
%install
2022-11-08 01:53:06 +00:00
mkdir -p %{buildroot} %{ansible_roles_dir}
2021-02-22 22:36:10 +00:00
2021-04-01 22:19:15 +00:00
for role in %{rolenames} ; do
2022-11-08 01:53:06 +00:00
cp -pR " $ r o l e " " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e "
2021-04-01 22:19:15 +00:00
done
2021-02-22 22:36:10 +00:00
2022-11-08 01:53:06 +00:00
%if 0%{?rhel}
# Create symlinks for roles in /usr/share/ansible/roles/linux-system-roles.$rolename
# That's required to make roles work with upstream naming too
2021-04-01 22:19:15 +00:00
for role in %{rolenames} ; do
2022-11-08 01:53:06 +00:00
ln -s " %{name} . $ r o l e " " %{buildroot} %{ansible_roles_dir} / l i n u x - s y s t e m - r o l e s . $ r o l e "
2021-04-01 22:19:15 +00:00
done
2021-02-22 22:36:10 +00:00
%endif
2022-11-08 01:53:06 +00:00
mkdir -p %{buildroot} %{_pkglicensedir}
rm %{buildroot} %{ansible_roles_dir} /%{roleinstprefix} network/examples/roles
2021-04-01 22:19:15 +00:00
for role in %{rolenames} ; do
2022-11-08 01:53:06 +00:00
mkdir -p " %{buildroot} %{_pkgdocdir} / $ r o l e "
ln -sr " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / C H A N G E L O G . m d " \
" %{buildroot} %{_pkgdocdir} / $ r o l e "
ln -sr " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / R E A D M E . m d " \
" %{buildroot} %{_pkgdocdir} / $ r o l e "
2021-06-10 21:05:56 +00:00
%if %{with html}
2022-11-08 01:53:06 +00:00
ln -sr " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / R E A D M E . h t m l " \
" %{buildroot} %{_pkgdocdir} / $ r o l e "
2021-06-10 21:05:56 +00:00
%endif
2022-11-08 01:53:06 +00:00
if [ -f " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / C O P Y I N G " ]; then
ln -sr " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / C O P Y I N G " \
" %{buildroot} %{_pkglicensedir} / $ r o l e . C O P Y I N G "
2021-04-01 22:19:15 +00:00
fi
2022-11-08 01:53:06 +00:00
if [ -f " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / L I C E N S E " ]; then
ln -sr " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / L I C E N S E " \
" %{buildroot} %{_pkglicensedir} / $ r o l e . L I C E N S E "
2021-04-01 22:19:15 +00:00
fi
2022-11-08 01:53:06 +00:00
if [ -d " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / e x a m p l e s " ]; then
2023-04-06 20:11:23 +00:00
for file in " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / e x a m p l e s / " * ; do
if [[ " $ f i l e " == *.yml ]]; then
basename=$(basename " $ f i l e " .yml)
newname=" $ b a s e n a m e "
if [[ " $ n e w n a m e " != example-* ]]; then
newname=" e x a m p l e - $ n e w n a m e "
fi
if [[ " $ n e w n a m e " != *-playbook ]]; then
newname=" $ { n e w n a m e } - p l a y b o o k "
fi
cp " $ f i l e " " %{buildroot} %{_pkgdocdir} / $ r o l e / $ { n e w n a m e } . y m l "
else
cp " $ f i l e " " %{buildroot} %{_pkgdocdir} / $ r o l e "
2021-04-01 22:19:15 +00:00
fi
rm " $ f i l e "
done
2022-11-08 01:53:06 +00:00
if [ -f " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / e x a m p l e s / i n v e n t o r y " ]; then
cp " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / e x a m p l e s / i n v e n t o r y " \
" %{buildroot} %{_pkgdocdir} / $ r o l e / e x a m p l e - i n v e n t o r y "
rm " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / e x a m p l e s / i n v e n t o r y "
2021-04-01 22:19:15 +00:00
fi
# special case for network
# this will error if the directory is unexpectedly empty
2022-11-08 01:53:06 +00:00
rmdir " %{buildroot} %{ansible_roles_dir} / %{roleinstprefix} $ r o l e / e x a m p l e s "
2021-04-01 22:19:15 +00:00
fi
done
2021-02-22 22:36:10 +00:00
2023-04-06 20:11:23 +00:00
rm -f %{buildroot} %{ansible_roles_dir} /%{roleinstprefix} */semaphore
2022-11-08 01:53:06 +00:00
rm -r %{buildroot} %{ansible_roles_dir} /%{roleinstprefix} */molecule
2021-02-22 22:36:10 +00:00
2022-11-08 01:53:06 +00:00
rm -r %{buildroot} %{ansible_roles_dir} /%{roleinstprefix} */.[A-Za-z]*
rm %{buildroot} %{ansible_roles_dir} /%{roleinstprefix} */tests/.git*
2021-02-22 22:36:10 +00:00
2021-04-01 22:19:15 +00:00
# NOTE: sshd/examples/example-root-login.yml is
2021-02-22 22:36:10 +00:00
# referenced in the configuring-openssh-servers-using-the-sshd-system-role documentation module
# must be updated if changing the file path
2022-11-08 01:53:06 +00:00
# Install the collection
2021-03-17 00:39:28 +00:00
pushd .collections/ansible_collections/%{collection_namespace} /%{collection_name} /
2022-11-08 01:53:06 +00:00
%ansible_collection_install
2021-04-01 22:19:15 +00:00
popd
2021-02-22 22:36:10 +00:00
2022-11-08 01:53:06 +00:00
mkdir -p %{buildroot} %{_pkgdocdir} /collection
mkdir -p %{buildroot} %{_pkgdocdir} /collection/roles
2021-04-05 23:13:32 +00:00
2022-11-08 01:53:06 +00:00
ln -sr %{buildroot} %{ansible_collection_files} %{collection_name} /README.md \
%{buildroot} %{_pkgdocdir} /collection
2021-04-05 23:13:32 +00:00
for rolename in %{rolenames} ; do
2022-08-04 14:41:55 +00:00
for file in CHANGELOG.md README.md; do
if [ -f %{buildroot} %{ansible_collection_files} %{collection_name} /roles/${rolename}/$file ]; then
2022-11-08 01:53:06 +00:00
if [ ! -d %{buildroot} %{_pkgdocdir} /collection/roles/${rolename} ]; then
mkdir -p %{buildroot} %{_pkgdocdir} /collection/roles/${rolename}
2022-08-04 14:41:55 +00:00
fi
2022-11-08 01:53:06 +00:00
ln -sr %{buildroot} %{ansible_collection_files} %{collection_name} /roles/${rolename}/$file \
%{buildroot} %{_pkgdocdir} /collection/roles/${rolename}
2022-08-04 14:41:55 +00:00
fi
done
2021-04-05 23:13:32 +00:00
done
2021-06-10 21:05:56 +00:00
%if %{with html}
2022-11-08 01:53:06 +00:00
# converting README.md to README.html for collection in %%{buildroot}%%{_pkgdocdir}/collection
readmes=" %{buildroot} %{_pkgdocdir} / c o l l e c t i o n / R E A D M E . m d "
2021-05-23 01:32:57 +00:00
for role in %{rolenames} ; do
2022-11-08 01:53:06 +00:00
readmes=" $ { r e a d m e s } %{buildroot} %{_pkgdocdir} / c o l l e c t i o n / r o l e s / $ { r o l e } / R E A D M E . m d "
2021-05-23 01:32:57 +00:00
done
sh md2html.sh $readmes
2021-06-10 21:05:56 +00:00
%endif
2021-05-23 01:32:57 +00:00
2021-03-17 00:39:28 +00:00
%if %{with collection_artifact}
# Copy collection artifact to /usr/share/ansible/collections/ for collection-artifact
2021-04-20 21:39:51 +00:00
pushd .collections/ansible_collections/%{collection_namespace} /%{collection_name} /
2021-04-16 18:46:15 +00:00
mv %{collection_namespace} -%{collection_name} -%{version} .tar.gz \
2022-11-08 01:53:06 +00:00
%{buildroot} %{_datadir} /ansible/collections/
2021-04-20 21:39:51 +00:00
popd
2021-03-17 00:39:28 +00:00
%endif
2021-02-22 22:36:10 +00:00
2022-11-08 01:53:06 +00:00
# Generate the %%files section in files_section.txt
# Bulk files inclusion is not possible because roles store doc and licence
# files together with other files
2021-04-01 22:19:15 +00:00
format_item_for_files() {
# $1 is directory or file name in buildroot
2022-11-08 01:53:06 +00:00
# $2 - if true, and item is a directory, use %%dir
2021-04-01 22:19:15 +00:00
local item
local files_item
2022-11-08 01:53:06 +00:00
item=" $ 1 " # full path including buildroot
files_item=${item##"%{buildroot}"} # path with cut buildroot to be added to %%files
2021-04-01 22:19:15 +00:00
if [ -L " $ i t e m " ]; then
echo " $ f i l e s _ i t e m "
elif [ -d " $ i t e m " ]; then
if [[ " $ i t e m " == */doc* ]]; then
echo " % d o c $ f i l e s _ i t e m "
elif [ " $ { 2 : - f a l s e } " = true ]; then
echo " % d i r $ f i l e s _ i t e m "
else
echo " $ f i l e s _ i t e m "
fi
2022-08-04 14:41:55 +00:00
elif [[ " $ i t e m " == */README.md ]] || [[ " $ i t e m " == */README.html ]] || [[ " $ i t e m " == */CHANGELOG.md ]]; then
2021-04-01 22:19:15 +00:00
if [[ " $ i t e m " == */private_* ]]; then
2022-11-08 01:53:06 +00:00
# mark as regular file, not %%doc
2021-04-01 22:19:15 +00:00
echo " $ f i l e s _ i t e m "
else
echo " % d o c $ f i l e s _ i t e m "
fi
2022-11-08 01:53:06 +00:00
elif [[ " $ i t e m " == */COPYING* ]] || [[ " $ i t e m " == */LICENSE* ]]; then
echo " % " " % " " l i c e n s e " " $ f i l e s _ i t e m "
else
2021-04-01 22:19:15 +00:00
echo " $ f i l e s _ i t e m "
fi
}
files_section=files_section.txt
rm -f $files_section
touch $files_section
2022-11-08 01:53:06 +00:00
# Dynamically generate files section entries for %%{ansible_collection_files}
2021-06-15 11:48:23 +00:00
find %{buildroot} %{ansible_collection_files} %{collection_name} -mindepth 1 -maxdepth 1 | \
2021-04-01 22:19:15 +00:00
while read item; do
if [[ " $ i t e m " == */roles ]]; then
format_item_for_files " $ i t e m " true >> $files_section
find " $ i t e m " -mindepth 1 -maxdepth 1 | while read roles_dir; do
format_item_for_files " $ r o l e s _ d i r " true >> $files_section
find " $ r o l e s _ d i r " -mindepth 1 -maxdepth 1 | while read roles_item; do
format_item_for_files " $ r o l e s _ i t e m " >> $files_section
done
done
else
format_item_for_files " $ i t e m " >> $files_section
fi
done
2022-11-08 01:53:06 +00:00
# Dynamically generate files section entries for %%{ansible_roles_dir}
find %{buildroot} %{ansible_roles_dir} -mindepth 1 -maxdepth 1 | \
2021-04-01 22:19:15 +00:00
while read item; do
if [ -d " $ i t e m " ]; then
format_item_for_files " $ i t e m " true >> $files_section
find " $ i t e m " -mindepth 1 -maxdepth 1 | while read roles_item; do
format_item_for_files " $ r o l e s _ i t e m " >> $files_section
done
else
format_item_for_files " $ i t e m " >> $files_section
fi
done
%files -f files_section.txt
2022-11-08 01:53:06 +00:00
%dir %{_datadir} /ansible
%dir %{ansible_roles_dir}
%dir %{ansible_collection_files}
%dir %{ansible_collection_files} %{collection_name}
%doc %{_pkgdocdir}
%license %{_pkglicensedir}
%if 0%{?rhel} && 0%{?rhel} < 8
2021-06-16 15:43:19 +00:00
# Needs to list excluded files in this hardcoded style since when
# format_item_for_files is executed, brp-python-bytecompile is not
# executed yet.
2022-11-08 01:53:06 +00:00
%exclude %{ansible_roles_dir} /*/*.py?
%exclude %{ansible_roles_dir} /*/*/*.py?
%exclude %{ansible_roles_dir} /*/*/*/*.py?
%exclude %{ansible_roles_dir} /*/*/*/*/*.py?
2021-06-16 15:43:19 +00:00
%exclude %{ansible_collection_files} /%{collection_name} /*/*/*.py?
%exclude %{ansible_collection_files} /%{collection_name} /*/*/*/*.py?
%exclude %{ansible_collection_files} /%{collection_name} /*/*/*/*/*.py?
%endif
2021-02-22 22:36:10 +00:00
2021-03-17 00:39:28 +00:00
%if %{with collection_artifact}
%files collection-artifact
%{_datadir} /ansible/collections/%{collection_namespace} -%{collection_name} -%{version} .tar.gz
%endif
2021-02-22 22:36:10 +00:00
%changelog
2023-06-23 14:39:32 +00:00
* Fri Jun 23 2023 Your Name <email@redhat.com> - 1.22.0-0.13
- Resolves:rhbz#2216753 : ssh - add ssh_backup option with default true
- Resolves:rhbz#2216520 : firewall - Don't install python(3)-firewall it's a dependency of firewalld
2023-06-22 17:42:46 +00:00
* Thu Jun 22 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.12
- Resolves:rhbz#2168692 : storage - Storage: mounted devices that are in use cannot be resized
2023-06-20 19:00:50 +00:00
* Tue Jun 20 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.11
- Resolves:rhbz#2211187 : kdump - support auto_reset_crashkernel, dracut_args, deprecate /etc/sysconfig/kdump
2023-06-08 01:51:13 +00:00
* Wed Jun 07 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.10
- Resolves:rhbz#2186253 : ad_integration - add ad_integration_force_rejoin
2023-06-06 22:54:09 +00:00
* Tue Jun 06 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.9
- Resolves:rhbz#2211194 : network - Support configuring auto-dns setting
- Resolves:rhbz#2211748 : rhc - implement rhc_proxy.scheme
- Resolves:rhbz#2179460 : selinux - use restorecon -T 0 on supported platforms
- Resolves:rhbz#2181656 : storage - RFE for the storage system role to support configuring the stripe size for RAID LVM volumes
- Resolves:rhbz#2210916 : storage - [RHEL9] Failed to commit changes to disk: Failed to format device: Input/output error
2023-05-31 00:51:50 +00:00
* Tue May 30 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.8
- Resolves:rhbz#2181657 : storage - [RFE] user-specified mount point owner and permissions
- Resolves:rhbz#2193058 : storage - Cannot set chunk size for RAID: Unsupported parameters for (blivet) module: pools.raid_chunk_size
- Resolves:rhbz#2210916 : storage - [RHEL9] Failed to commit changes to disk: Failed to format device: Input/output error
2023-05-23 21:42:31 +00:00
* Tue May 23 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.7
- remove upstream only docs from README.md files
- python3-setuptools is now required for release_collection.py
- fix ruamel issue described at https://github.com/linux-system-roles/auto-maintenance/pull/272
- Resolves:rhbz#2209200 : rhc - system role does not apply Insights tags
- Resolves:rhbz#2179458 : tlog - use the proxy provider - the files provider is deprecated in sssd
- Resolves:rhbz#2190502 : roles should support running with gather_facts: false
- READMEs for all roles contain only downstream applicable docs
- All roles/tests now work with ansible-core 2.15
- Fix some roles to work with remove-cloud-init
2023-04-06 20:11:23 +00:00
* Thu May 04 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.6
- Resolves:rhbz#2185062 : fingerprint in config files managed by roles
- Resolves:rhbz#2185067 : ha_cluster - Add possibility to load SBD watchdog kernel modules
- Resolves:rhbz#2185065 : ha_cluster - support for resource and operation defaults
- Resolves:rhbz#2151373 : postgresql - [RFE] system role for PostgreSQL management
- Resolves:rhbz#2179026 : rhc - [RFE] New role for Red Hat subscription management, insights management [rhel-9.3.0]
- Resolves:rhbz#2185066 : ha_cluster - use pcs to setup qdevice certificates if available
- Resolves:rhbz#2185002 : spec: Remove doc fragments from vendored modules
- Resolves:rhbz#2175324 : use ansible-galaxy collection build/install instead of tar
- Resolves:rhbz#2186218 : rhc - RHC system role: activation key registration fails if system is already registered
- Resolves:rhbz#2190501 : selinux - failing test - sshd/tests_firewall_selinux.yml - No package matching 'firewalld' found available, installed or updated
* Wed May 3 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.5
- fix issue with postgresql tests
* Tue May 2 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.4
- fix issue with ha_cluster vendoring modprobe
- move vendoring into included files
* Thu Apr 27 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.3
- fix issues in some tests with ANSIBLE_GATHERING=explicit
- add testing for fingerprints in config files
- fix podman jinja 2.7 issue
- sshd - skip firewall testing if not supported
* Thu Apr 6 2023 Rich Megginson <rmeggins@redhat.com> - 1.22.0-0.2
- initial 8.9/9.3
2023-04-06 13:05:09 +00:00
* Thu Apr 6 2023 Sergei Petrosian <spetrosi@redhat.com> - 1.21.1-2
- Resolves: rhbz#2185002 : Remove doc fragments from vendored modules
- Build collection artifact in the same directory on Fedora and RHEL
2023-03-14 22:38:34 +00:00
* Thu Mar 16 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.1-1
- Resolves:rhbz#2141330 : rhc - new role for subscription management/registration/insights
- includes the fix for tests_proxy.yml selinux and some test refactoring
2023-02-27 16:02:12 +00:00
* Wed Feb 22 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-2
- Resolves:rhbz#2141330 : rhc - new role for subscription management/registration/insights
- remove role until https://bugzilla.redhat.com/show_bug.cgi?id=2171829 is fixed
2023-02-20 17:36:05 +00:00
* Mon Feb 20 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-1
- Resolves:rhbz#2168735 : network - RedHat Role rhel-system-roles.network should route traffic via correct bond
2023-02-16 15:21:43 +00:00
* Thu Feb 16 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.19
- Resolves:rhbz#2141330 : rhc - new role for subscription management/registration/insights
- vendor in modules required by rhc role
- Resolves:rhbz#2167528 : ha_cluster - Fix stonith watchdog timeout
2023-02-16 00:59:41 +00:00
* Wed Feb 15 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.18
- Resolves:rhbz#2141330 : rhc - new role for subscription management/registration/insights
- ad_integration - fix issue with using the network role to configure DNS
2023-02-10 01:31:03 +00:00
* Thu Feb 09 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.17
- Resolves:rhbz#2160152 : selinux - managing modules is not idempotent
- Fix nbde_server test issue
2023-02-03 22:49:37 +00:00
* Fri Feb 03 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.16
- Resolves:rhbz#2165175 : journald - New role - journald - manage systemd-journald
- Resolves:rhbz#2162782 : nbde_client - nbde_client_clevis fails with a traceback and prints sensitive data
- Resolves:rhbz#2160152 : selinux - managing modules is not idempotent
- fix storage tests_swap and tests_misc - swap size < 128GB on EL7
- fix podman general-meta issue
- ha_cluster non-x86_64 tests issue
- certificate non-x86_64 tests issue
2023-01-16 22:48:54 +00:00
* Fri Jan 20 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.15
- Resolves:rhbz#2149678 : Synchronize automation-related changes from Fedora spec file
- Resolves:rhbz#2100559 : network - role should support running tests with ANSIBLE_GATHERING=explicit
- Fix ansible-test issues in several roles
- Fix nbde_server tang test failure
2023-01-13 15:39:57 +00:00
* Fri Jan 13 2023 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.14
- Resolves:rhbz#2140804 : ha_cluster - Allow quorum device configuration
- Resolves:rhbz#2153030 : ha_cluster - Allow enabled SBD on disabled cluster
- Resolves:rhbz#2143816 : ha_cluster - use no_log in tasks looping over pot. secret parameters
- community.general 6.2.0
- replace community.general with namespace.name for rhc role
2022-12-16 01:31:18 +00:00
* Thu Dec 15 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.13
- Resolves:rhbz#2143246 : storage - [RHEL9] ansible.parsing.yaml.objects.AnsibleUnicode object' has no attribute 'bytes'
- Resolves:rhbz#2128467 : storage - [RHEL9] disks_needed need to be set for the raid test cases
- Resolves:rhbz#2123594 : storage - [RHEL9 system role] storage role vdo tests failed about "VDO deduplication is off but it should not"
- Resolves:rhbz#2153660 : storage - [RHEL9] tests_create_thinp_then_remove_scsi_generated.yml failed at "assertion": "(storage_test_expected_size|int - storage_test_actual_size.bytes)|abs / storage_test_expected_size|int < 0.01"
2022-12-13 23:28:00 +00:00
* Thu Dec 15 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.12
- Resolves:rhbz#2153043 - tlog - Unconditionally enable the files provider
2022-12-13 14:53:51 +00:00
* Tue Dec 13 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.11
- Resolves:rhbz#2130357 : logging - [RFE] convert logging role to use firewall, selinux role, and certificate role
fix basic-smoke-test failures
2022-12-12 23:11:59 +00:00
* Mon Dec 12 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.10
- Resolves:rhbz#2130010 : ha_cluster - [RFE] convert ha_cluster role to use firewall, selinux and certificate role
- Resolves:rhbz#2143768 : network - Support cloned MAC address
- Resolves:rhbz#2143427 : podman - [RFE] role for managing podman containers and systemd
2022-12-02 14:27:52 +00:00
* Tue Dec 06 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.9
- Resolves:rhbz#2140795 : ad_integration - [RFE] new role to support AD integration, join to AD domain
2022-12-05 19:56:07 +00:00
* Mon Dec 05 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.8
- Resolves:rhbz#2130357 : logging - [RFE] convert logging role to use firewall, selinux role, and certificate role
fix tests - tests_relp now uses logging_purge_confs
2022-11-30 02:22:42 +00:00
* Tue Nov 29 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.7
- Resolves:rhbz#2126959 : nbde_client - must handle clevis-luks-askpass and clevis-luks-askpass@ systemd unit names
2022-11-30 01:28:41 +00:00
* Tue Nov 29 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.6
- Resolves:rhbz#2133930 : nbde_server - [RFE] convert nbde_server role to use firewall and selinux role
previous fix was not complete - needed additional fixes - ansible-lint 6.x fixes
use firewall, selinux, certificate roles in other system roles
cockpit - [RFE] convert cockpit role to use firewall, selinux role, and certificate role
Resolves:rhbz#2137663
logging - [RFE] convert logging role to use firewall, selinux role, and certificate role
Resolves:rhbz#2130357
metrics - [RFE] convert metrics role to use firewall and selinux role
Resolves:rhbz#2133528
nbde_server - [RFE] convert nbde_server role to use firewall and selinux role
Resolves:rhbz#2133930
postfix - [RFE] convert postfix role to use firewall and selinux role
Resolves:rhbz#2130329
vpn - Add parameters shared_key_content, ike, esp, type, leftid, rightid
Resolves:rhbz#2119102
vpn - [RFE] convert vpn role to use firewall and selinux role
Resolves:rhbz#2130344
2022-11-17 23:47:20 +00:00
* Mon Nov 21 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.5
- Resolves:rhbz#2137663 : cockpit - [RFE] convert cockpit role to use firewall, selinux role, and certificate role
fix test issues - use system roles collection for certificate role
make role work with ansible-core 2.14
- Resolves:rhbz#2130357 : logging - [RFE] convert logging role to use firewall, selinux role, and certificate role
fix tests - use getcert stop-tracking for hung tests - increase log test timeout
- Resolves:rhbz#2133528 : metrics - [RFE] convert metrics role to use firewall and selinux role
- Resolves:rhbz#2133930 : nbde_server - [RFE] convert nbde_server role to use firewall and selinux role
- Resolves:rhbz#2130329 : postfix - [RFE] convert postfix role to use firewall and selinux role
- Resolves:rhbz#2119102 : vpn - Add parameters shared_key_content, ike, esp, type, leftid, rightid
- Resolves:rhbz#2130344 : vpn - [RFE] convert vpn role to use firewall and selinux role
2022-11-16 22:38:57 +00:00
* Thu Nov 17 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.4.podman
- Resolves:rhbz#2143427 : podman - [RFE] role for managing podman containers and systemd
fix role tests with podman 4.3, ansible-core 2.14
2022-11-16 20:26:27 +00:00
* Wed Nov 16 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.3.ssh_sshd_selinux_timesync
- Resolves:rhbz#2128843 : selinux - add support for the 'local' parameter
- Resolves:rhbz#2129401 : sshd,ssh,timesync - Unexpected templating type error - expected str instance, int found
- Resolves:rhbz#2130969 : ssh,sshd - Sync on final OpenSSH option name RequiredRSASize in ssh and sshd roles [rhel-9.2.0]
2022-11-15 21:30:38 +00:00
* Tue Nov 15 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.2.network
- Resolves:rhbz#2134202 : network - [RFE] Support setting the metric of the default route for initscripts provider
- Resolves:rhbz#2133858 : network - [RFE] Support the DNS priority
- Resolves:rhbz#2131293 : network - Support looking up named route table in routing rule
- Resolves:rhbz#2123311 : network - tests_bond_options_nm.yml failing, Cannot find device "nm-bond"
- includes ha_cluster, vpn - README.md had headings that were too long causing problems
for md to adoc to html conversion on el8
- includes changing network role to support ansible-core 2.14
- includes community.general 6.0.1
- adds back network bondtests patch - bond tests still failing in beaker
2022-11-08 01:53:06 +00:00
* Tue Nov 08 2022 Rich Megginson <rmeggins@redhat.com> - 1.21.0-0.1.network
- Resolves:rhbz#2134202 : network - [RFE] Support setting the metric of the default route for initscripts provider
- Resolves:rhbz#2133858 : network - [RFE] Support the DNS priority
- Resolves:rhbz#2131293 : network - Support looking up named route table in routing rule
- Resolves:rhbz#2123311 : network - tests_bond_options_nm.yml failing, Cannot find device "nm-bond"
2022-09-27 22:25:36 +00:00
* Tue Sep 27 2022 Rich Megginson <rmeggins@redhat.com> - 1.20.1-1
- Resolves:rhbz#2129873 : ssh,sshd - Sync on final OpenSSH option name RequiredRSASize in ssh and sshd roles
2022-08-04 14:41:55 +00:00
* Thu Aug 04 2022 Rich Megginson <rmeggins@redhat.com> - 1.20.0-1
- ensure CHANGELOG.md files are marked as doc
- Resolves:rhbz#2115152 : cockpit - Add customization of port
- Resolves:rhbz#2100942 : firewall - RFE: firewall-system-role: add ability to add interface to zone by PCI device ID
- Resolves:rhbz#2115154 : firewall - support for firewall_config - gather firewall facts
- Resolves:rhbz#2112145 : logging - [RFE] Support startmsg.regex and endmsg.regex in the files inputs
- Resolves:rhbz#2115886 : network - fix IPRouteUtils.get_route_tables_mapping() to accept any whitespace sequence
- Resolves:rhbz#2115157 : selinux - Added setting of seuser and selevel for completeness
- Resolves:rhbz#2115156 : nbde_client - Sets proper spacing for parameter rd.neednet=1
- Resolves:rhbz#2109998 : ssh sshd - ssh, sshd: RSAMinSize parameter definition is missing
- Resolves:rhbz#2082736 : storage - [RHEL9] [WARNING]: The loop variable 'storage_test_volume' is already in use. You should set the `loop_var` value in the `loop_control` option for the task to something else to avoid variable collisions and unexpected behavior.
2022-07-01 17:32:05 +00:00
* Fri Jul 01 2022 Rich Megginson <rmeggins@redhat.com> - 1.19.3-1
- min_ansible_version is string instead of float
- fix storage test failures
- support for ansible-core 2.13
- crypto_policies - rhel 8.7 default policy is FUTURE not DEFAULT
Resolves: rhbz#2100251
- firewall - forward_port should accept list of string or list of dict
Resolves: rhbz#2100605
- firewall - support add/modify/delete services
Resolves: rhbz#2100292
- metrics - document minimum supported redis version required by rhel-system-roles
Resolves: rhbz#2100286
- metrics - restart pmie, pmlogger if changed, do not wait for handler
Resolves: rhbz#2100294
- network - Support managing the network through nmstate schema
Resolves: rhbz#2072385
- storage - _storage_test_pool_pvs get wrong data type in test-verify-pool-members.yml
Resolves: rhbz#2044119
- storage - support for adding/removing disks to/from storage pools
Resolves: rhbz#2072742
- storage - support for attaching cache volumes to existing volumes
Resolves: rhbz#2072746
2022-06-16 00:38:52 +00:00
* Wed Jun 15 2022 Rich Megginson <rmeggins@redhat.com> - 1.19.2-1
- sshd - fix ansible 2.9 support in meta/main.yml
Resolves: rhbz#2052086 (9.1.0)
2022-06-13 17:02:57 +00:00
* Mon Jun 13 2022 Rich Megginson <rmeggins@redhat.com> - 1.19.1-1
- storage - fix coverity scan issue in blivet.py
Resolves: rhbz#2072745 (9.1.0)
- logging - fix gather_facts/set_vars issue
Resolves: rhbz#2078989 (9.1.0)
- ha_cluster - Move tasks that set up CI environment to roles tasks/ dir
Resolves: rhbz#2093438 (9.1.0)
- sshd - fix tests issue with rhel9 hosts
2022-06-06 21:02:11 +00:00
* Mon Jun 06 2022 Rich Megginson <rmeggins@redhat.com> - 1.19.0-1
- storage - support for creating and managing LVM thin pools/LVs
Resolves: rhbz#2072745 (9.1.0)
- firewall - Update Ansible syntax in Firewall system role README.md file examples
Resolves: rhbz#2094096 (9.1.0)
- storage role raid_level " s t r i p e d " is not supported
Resolves: rhbz#2083410 (9.1.0)
- network: the controller device is not completely cleaned up in the bond tests.
Resolves: rhbz#2089872 (9.1.0)
- firewall - state no longer required for masquerade and ICMP block inversion
Resolves: rhbz#2093423 (9.1.0)
- ha_cluster - Move tasks that set up CI environment to roles tasks/ dir
Resolves: rhbz#2093438 (9.1.0)
2022-04-28 00:47:49 +00:00
* Mon May 02 2022 Rich Megginson <rmeggins@redhat.com> - 1.18.0-1
- firewall - [Improvement] Allow System Role to reset to default Firewalld Settings
Resolves: rhbz#2043010 (9.1.0)
- metrics - [RFE] add an option to the metrics role to enable postfix metric collection
Resolves: rhbz#2051737 (9.1.0)
- network - Rework the infiniband support
Resolves: rhbz#2086965 (9.1.0)
- sshd - recurse into tests and examples sub-directories when replacing string in files
the sshd role latest version added sub-directories under tests that need
role name replacement - so just use find
- sshd - sshd system role should not assume that RHEL 9 /etc/ssh/sshd_config has " I n c l u d e > / e t c / s s h / s s h d _ c o n f i g . d / * . c o n f "
Resolves: rhbz#2052081 (9.1.0)
- sshd - sshd system role should be able to optionally manage /etc/ssh/sshd_config on RHEL 9
Resolves: rhbz#2052086 (9.1.0)
- storage - storage role cannot set mount_options for volumes
Resolves: rhbz#2083376 (9.1.0)
* Mon Apr 25 2022 Rich Megginson <rmeggins@redhat.com> - 1.17.0-1
- All roles should support running with gather_facts: false
Resolves: rhbz#2078989 (9.1.0)
- firewall - Firewall system role Ansible deprecation warning related to " i n c l u d e "
Resolves: rhbz#2061511 (9.1.0)
- ha_cluster - ha_cluster - support advanced corosync configuration
Resolves: rhbz#2065337 (9.1.0)
- ha_cluster - ha_cluster - support SBD fencing
Resolves: rhbz#2079626 (9.1.0)
- ha_cluster - ha_cluster - add support for configuring bundle resources
Resolves: rhbz#2073519 (9.1.0)
- kernel_settings - kernel_settings error configobj not found on RHEL 8.6 managed hosts
Resolves: rhbz#2060525 (9.1.0)
- logging - logging tests fail during cleanup if no cloud-init on system
Resolves: rhbz#2058799 (9.1.0)
- logging - Logging - RFE - support template, severity and facility options
Resolves: rhbz#2075119 (9.1.0)
- metrics - Metrics role, with " m e t r i c s _ f r o m _ m s s q l " option does not configure /var/lib/pcp/pmdas/mssql/mssql.conf on first run
Resolves: rhbz#2060523 (9.1.0)
- metrics - metrics - consistently use ansible_managed in configuration files managed by role
Resolves: rhbz#2065392 (9.1.0)
- metrics - [RFE] add an option to the metrics role to enable postfix metric collection
Resolves: rhbz#2051737 (9.1.0)
- nbde_client - NBDE client system role does not support servers with static IP addresses
Resolves: rhbz#2070462 (9.1.0)
- network - [RFE] Extend rhel-system-roles.network feature set to support routing rules
Resolves: rhbz#2079622 (9.1.0)
- network - bond: fix typo in supporting the infiniband ports in active-backup mode
Resolves: rhbz#2065394 (9.1.0)
- network - pytest failed when running with nm providers in the rhel-8.5 beaker machine
Resolves: rhbz#2066911 (9.1.0)
- network - network - consistently use ansible_managed in configuration files managed by role
Resolves: rhbz#2065382 (9.1.0)
- postfix - postfix - consistently use ansible_managed in configuration files managed by role
Resolves: rhbz#2065393 (9.1.0)
- postfix - Postfix RHEL System Role should provide the ability to replace config and reset configuration back to default
Resolves: rhbz#2065383 (9.1.0)
- sshd - FIPS mode detection in SSHD role is wrong
Resolves: rhbz#2073605 (9.1.0)
- storage - RFE storage Less verbosity by default
Resolves: rhbz#2079627 (9.1.0)
- timesync - timesync: basic-smoke test failure in timesync/tests_ntp.yml
Resolves: rhbz#2060524 (9.1.0)
- tlog - Tlog role - Enabling session recording configuration does not work due to RHEL9 SSSD files provider default
Resolves: rhbz#2071804 (9.1.0)
* Thu Apr 07 2022 Rich Megginson <rmeggins@redhat.com> - 1.16.3-1
- tlog - Enabling session recording configuration does not work due to RHEL9 SSSD files provider default
Resolves rhbz#2072749 (EL8)
Resolves rhbz#2071804 (EL9)
* Wed Apr 06 2022 Sergei Petrosian <spetrosi@redhat.com> - 1.16.2-2
- Update community.general
* Thu Mar 31 2022 Rich Megginson <rmeggins@redhat.com> - 1.16.2-1
- nbde_client - NBDE client system role does not support servers with static IP addresses
previous fix did not handle some other cases
Resolves rhbz#1985022 (EL8)
Resolves rhbz#2031555 (EL9)
* Tue Mar 29 2022 Rich Megginson <rmeggins@redhat.com> - 1.16.1-1
- nbde_client - NBDE client system role does not support servers with static IP addresses
previous fix did not handle some cases
Resolves rhbz#1985022 (EL8)
Resolves rhbz#2031555 (EL9)
* Tue Mar 22 2022 Sergei Petrosian <spetrosi@redhat.com> - 1.16.0-2
- Update community.general
* Tue Mar 15 2022 Rich Megginson <rmeggins@redhat.com> - 1.16.0-1
- network - pytest failed when running with nm providers in the rhel-8.5 beaker machine
Resolves rhbz#2064396 (EL8)
Resolves rhbz#2064401 (EL9)
- network - bond: fix typo in supporting the infiniband ports in active-backup modekernel_settings error configobj not found on RHEL 8.6 managed hosts
Resolves rhbz#2064388 (EL8)
Resolves rhbz#2064391 (EL9)
- network - consistently use ansible_managed in configuration files managed by role
Resolves rhbz#2057656 (EL8)
Resolves rhbz#2057657 (EL9)
- metrics - consistently use ansible_managed in configuration files managed by role
Resolves rhbz#2057645 (EL8)
Resolves rhbz#2057647 (EL9)
- postfix - consistently use ansible_managed in configuration files managed by role
Resolves rhbz#2057661 (EL8)
Resolves rhbz#2057662 (EL9)
- postfix - provide the ability to replace config and reset configuration back to default
Resolves rhbz#2044657 (EL8)
Resolves rhbz#2058780 (EL9)
- new tags required in galaxy.yml for Automation Hub
2022-02-28 19:14:51 +00:00
* Thu Mar 3 2022 Rich Megginson <rmeggins@redhat.com> - 1.15.1-1
- kernel_settings error configobj not found on RHEL 8.6 managed hosts
Resolves rhbz#2058772 (EL8)
Resolves rhbz#2058756 (EL9)
- timesync: basic-smoke test failure in timesync/tests_ntp.yml
Resolves rhbz#2059293 (EL8)
Resolves rhbz#2058645 (EL9)
2022-03-01 23:11:39 +00:00
* Tue Mar 1 2022 Noriko Hosoi <nhosoi@redhat.com> - 1.15.0-2
- metrics - follow symlinks for the mssql and elasticsearch configuration paths
Resolves rhbz#2058655 (EL8)
Resolves rhbz#2058777 (EL9)
2022-02-22 21:12:21 +00:00
* Thu Feb 24 2022 Rich Megginson <rmeggins@redhat.com> - 1.15.0-1
- firewall - ensure target changes take effect immediately
Resolves rhbz#2057172 (EL8)
Resolves rhbz#2057164 (EL9)
- firewall - Firewall RHEL System Role should be able to set default zone
Resolves rhbz#2022458 (EL8)
Resolves rhbz#2022461 (EL9)
- network - tests_802_1x_nm, tests_802_1x_updated_nm fails because of missing hostapd in EPEL
Resolves rhbz#2053862 (EL8)
Resolves rhbz#2053861 (EL9)
2022-01-17 23:43:55 +00:00
* Mon Feb 21 2022 Rich Megginson <rmeggins@redhat.com> - 1.14.0-1
- ha_cluster - set permissions for haclient group
Resolves rhbz#2049747 (EL8)
Resolves rhbz#2049754 (EL9)
- network - Add more bonding options to rhel-system-roles.network
Resolves rhbz#2008931 (EL8)
Resolves rhbz#2054435 (EL9)
- certificate - should consistently use ansible_managed in hook scripts
Resolves rhbz#2054364 (EL8)
Resolves rhbz#2054368 (EL9)
- tlog - consistently use ansible_managed in configuration files managed by role
Resolves rhbz#2054363 (EL8)
Resolves rhbz#2054367 (EL9)
- vpn - consistently use ansible_managed in configuration files managed by role
Resolves rhbz#2054365 (EL8)
Resolves rhbz#2054369 (EL9)
2022-02-14 21:26:34 +00:00
* Mon Feb 14 2022 Rich Megginson <rmeggins@redhat.com> - 1.13.0-1
- storage - RFE: Add support for RAID volumes (lvm-only)
Resolves rhbz#2016514 (EL8)
Resolves rhbz#2016518 (EL9)
- storage - RFE: Add support for cached volumes (lvm-only)
Resolves rhbz#2016511 (EL8)
Resolves rhbz#2016517 (EL9)
- metrics - metrics role can't be re-run if the Grafana admin password has been changed
Resolves rhbz#1967321 (EL8)
Resolves rhbz#2041632 (EL9)
- nbde_client - NBDE client system role does not support servers with static IP addresses
Resolves rhbz#1985022 (EL8)
Resolves rhbz#2031555 (EL9)
- ha_cluster - [RFE] ha_cluster - Support for creating resource constraints (Location, Ordering, etc.)
Resolves rhbz#2041635 (EL8)
Resolves rhbz#2041634 (EL9)
- firewall - ensure zone exists and can be used in subsequent operations
Resolves rhbz#2042541 (EL8)
Resolves rhbz#2024775 (EL9)
- network - RFE: Support Routing Tables in static routes in Network Role
Resolves rhbz#2031521 (EL8)
Resolves rhbz#2049798 (EL9)
- network - Failure to activate connection: nm-manager-error-quark: No suitable device found for this connection
Resolves rhbz#2034908 (EL8)
Resolves rhbz#2038957 (EL9)
- network - Set DNS search setting only for enabled IP protocols
Resolves rhbz#2041627 (EL8)
Resolves rhbz#2004899 (EL9)
2022-02-08 18:06:18 +00:00
* Tue Feb 8 2022 Rich Megginson <rmeggins@redhat.com> - 1.12.1-1
- vpn - template error while templating string: no filter named 'vpn_ipaddr'
Resolves rhbz#2052103 (EL8)
Resolves rhbz#2050341 (EL9)
- kdump - Unable to start service kdump: Job for kdump.service failed because the control process exited with error code.
Resolves rhbz#2052105 (EL8)
Resolves rhbz#2050419 (EL9)
- remove collection dependencies on rhel because we vendor them in
2022-02-03 20:34:38 +00:00
* Thu Feb 3 2022 Rich Megginson <rmeggins@redhat.com> - 1.12.0-2
- RHEL8.6, 9 - add " R e q u i r e s : a n s i b l e - c o r e o r a n s i b l e "
Resolves rhbz#2012316 (EL8)
Resolves rhbz#2012298 (EL9)
2022-01-27 23:55:52 +00:00
* Thu Jan 27 2022 Rich Megginson <rmeggins@redhat.com> - 1.12.0-1
- vpn - use custom vpn_ipaddr filter to make role work on RHEL 8.6 with ansible-core
this is covered by " m a k e r o l e s w o r k w i t h a n s i b l e - c o r e o n a l l p l a t f o r m s " BZ
- logging - Logging role " l o g g i n g _ p u r g e _ c o n f s " option not properly working
Resolves rhbz#2040812 (EL8)
Resolves rhbz#2039106 (EL9)
- kernel_settings role should use ansible_managed in its configuration file
Resolves rhbz#2047504 (EL8)
Resolves rhbz#2047506 (EL9)
2022-01-20 17:53:43 +00:00
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Tue Dec 14 2021 Rich Megginson <rmeggins@redhat.com> - 1.11.0-2
- RHEL8.6, 9 - add " R e q u i r e s : a n s i b l e - c o r e o r a n s i b l e "
2021-12-09 18:51:08 +00:00
* Thu Dec 2 2021 Rich Megginson <rmeggins@redhat.com> - 1.11.0-1
- timesync - fix ansible 2.12 issues, service_facts issues
Resolves rhbz#2012316 (EL8)
Resolves rhbz#2012298 (EL9)
- timesync - Failure related to missing ntp/ntpd package/service on RHEL-9 host
Resolves rhbz#2029463 (EL9)
- logging - add test case for immark quoting issue
Resolves rhbz#2021678 (EL8)
Resolves rhbz#2021676 (EL9)
- cockpit - use existing cert - cockpit_cert, cockpit_private_key
Resolves rhbz#2021661 (EL8)
Resolves rhbz#2021028 (EL9)
- storage - fix ansible 2.12 issues, service_facts issues; workaround lvm, udev issues in tests
Resolves rhbz#2012316 (EL8)
Resolves rhbz#2012298 (EL9)
- ssh - tests_all_options.yml: " a s s e r t i o n " : " ' S t d i n N u l l y e s ' i n c o n f i g . c o n t e n t | b 6 4 d e c o d e " , failure
Resolves rhbz#2029614 (EL8)
Resolves rhbz#2029427 (EL9)
- kdump - support reboot required and reboot ok
Resolves rhbz#2029605 (EL8)
Resolves rhbz#2029602 (EL9)
- metrics - sync with latest ansible-pcp
Resolves rhbz#2012316 (EL8)
Resolves rhbz#2012298 (EL9)
- sshd - should detect FIPS mode and handle tasks correctly in FIPS mode
Resolves rhbz#1979714 (EL8)
Resolves rhbz#2029634 (EL9)
* Mon Nov 8 2021 Rich Megginson <rmeggins@redhat.com> - 1.10.0-1
- add cockpit role
Resolves rhbz#2021661 (EL8)
Resolves rhbz#2021028 (EL9)
- add firewall role
Resolves rhbz#1854988 (EL8)
Resolves rhbz#2021665 (EL9)
- firewall - add ability to add-source
Resolves rhbz#1932678 (EL8)
Resolves rhbz#2021667 (EL9)
- firewall - allow user defined zones
Resolves rhbz#1850768 (EL8)
Resolves rhbz#2021669 (EL9)
- firewall - allow specifying the zone
Resolves rhbz#1850753 (EL8)
Resolves rhbz#2021670 (EL9)
- updates for ansible 2.12 support
Resolves rhbz#2012316 (EL8)
Resolves rhbz#2012298 (EL9)
- update community.general to 4.0.1
Resolves rhbz#2006081 (EL8)
Resolves rhbz#2006076 (EL9)
- network - Allow to specify PCI address to configure profiles
Resolves rhbz#1695634 (EL8)
Resolves rhbz#1999162 (EL9)
- network - support wifi Enhanced Open (OWE)
Resolves rhbz#1993379 (EL8)
Resolves rhbz#1993377 (EL9)
- network - support WPA3 Simultaneous Authentication of Equals(SAE)
Resolves rhbz#1993311 (EL8)
Resolves rhbz#1993304 (EL9)
- network - RFE: Support ignoring default gateway retrieved by DHCP/IPv6-RA
Resolves rhbz#1897565 (EL8)
Resolves rhbz#1978773 (EL9)
- network - Update network system role to reflect that network teaming is deprecated in RHEL 9
Resolves rhbz#1897565 (EL8)
Resolves rhbz#1999770 (EL9)
- selinux - fails linit rules role-name and unnamed-task
Resolves rhbz#1974000 (EL8)
Resolves rhbz#2021675 (EL9)
- kernel_settings - ansible_managed | comment BZs:
Resolves rhbz#2006230 (EL9)
Resolves rhbz#2006231 (EL8)
Resolves rhbz#2006233 (EL7)
- logging - logging role missing quotes for immark module interval value
Resolves rhbz#2021678 (EL8)
Resolves rhbz#2021676 (EL9)
- logging - Add user and password
Resolves rhbz#2010327 (EL8)
Resolves rhbz#1990490 (EL9)
- logging - Performance improvement
Resolves rhbz#2005727 (EL8)
Resolves rhbz#2004303 (EL9)
- nbde_client - add regenerate-all to the dracut command
Resolves rhbz#2021682 (EL8)
Resolves rhbz#2021681 (EL9)
- certificate - Fix certificate permissions with " g r o u p " option
Resolves rhbz#2021683 (EL8)
Resolves rhbz#2021025 (EL9)
2021-10-26 15:36:55 +00:00
* Tue Oct 26 2021 Sergei Petrosian <spetrosi@redhat.com> - 1.9.0-2
- Change the PFSL license to Python because this is how PFSL is reffered to in
rpminspect-data packages in Fedora, CentOS, and RHEL
Related: rhbz#2006076
Rebase to latest upstream
- Support ansible-core and improve roles:
- selinux: Add support for Rocky Linux 8, fix
ansible_distribution_major_version
- timesync: Support ansible-core, use ansible_managed | comment
- kdump: Support ansible-core, use ansible_managed | comment
- network: Support ansible-core; deprecate RHEL 9 in readme; validate
that ipv6_disabled is conflicting with other settings; specify PCI
address to configure profile - adds match and path settings)
- storage: Support ansible-core, add skip checks feature to speed up
the tests
- logging: Support ansible-core, add the `uid` option for
elasticsearch, improve performance, use ansible_manged | comment
Resolves: rhbz#1990490 (EL9)
- ssh: Use ansible_manged | comment
- sshd: Use ansible_managed | comment
- ha_cluster: Support ansible-core, fix password_hash salt length
- vpn: Support ansible-core, use wait_for_connection instead of
wait_for with ssh
- ansible_managed | comment BZs:
Resolves: rhbz#2006230 (EL9)
- untar the collection tarballs and copy the files
- Add vendoring code for rhel / centos
- selinux: selinux, seboolean, seport, selogin, sefcontext
- storage: mount
- vpn: ipaddr
Resolves: rhbz#2006076 (EL9)
2021-10-11 09:32:49 +00:00
* Mon Oct 11 2021 Sergei Petrosian <spetrosi@redhat.com> - 1.9.0-1
- Support ansible-core and improve roles:
- selinux: Add support for Rocky Linux 8, fix ansible_distribution_major_version
- timesync: Support ansible-core, use ansible_managed | comment
- kdump: Support ansible-core, use ansible_managed | comment
- network: Support ansible-core; deprecate RHEL 9 in readme; validate that ipv6_disabled is conflicting with other settings; specify PCI address to configure profile - adds match and path settings)
- storage: Support ansible-core, add skip checks feature to speed up the tests
- logging: Support ansible-core, add the `uid` option for elasticsearch, improve performance, use ansible_manged | comment
Resolves: rhbz#1990490 (EL9)
- ssh: Use ansible_manged | comment
- sshd: Use ansible_managed | comment
- ha_cluster: Support ansible-core, fix password_hash salt length
- vpn: Support ansible-core, use wait_for_connection instead of wait_for with ssh
- ansible_managed | comment BZs:
Resolves: rhbz#2006230 (EL9)
Resolves: rhbz#2006231 (EL8)
Resolves: rhbz#2006233 (EL7)
- untar the collection tarballs and copy the files
- Add vendoring code for rhel / centos
- selinux: selinux, seboolean, seport, selogin, sefcontext
- storage: mount
- vpn: ipaddr
Resolves: rhbz#2006076 (EL9)
Resolves: rhbz#2006081 (EL8)
2021-08-21 19:43:19 +00:00
* Thu Aug 26 2021 Rich Megginson <rmeggins@redhat.com> - 1.8.3-2
- selinux - tag tests_selinux_disabled.yml with tests::avc
Resolves rhbz#1996315 (EL9)
Resolves rhbz#1996317 (EL8)
2021-08-26 13:42:54 +00:00
* Thu Aug 26 2021 Rich Megginson <rmeggins@redhat.com> - 1.8.3-1
- storage - revert the dm-vdo workaround fix for vdo testing
Resolves rhbz#1978488 (EL9)
Resolves rhbz#1991141 (EL8)
2021-08-24 16:33:36 +00:00
* Tue Aug 24 2021 Rich Megginson <rmeggins@redhat.com> - 1.8.2-1
- logging - Update the certificates copy tasks
Resolves rhbz#1996777 (EL9)
Resolves rhbz#1994580 (EL8)
2021-08-17 02:06:33 +00:00
* Mon Aug 16 2021 Rich Megginson <rmeggins@redhat.com> - 1.8.1-1
- metrics - the bpftrace role does not properly configure bpftrace agent
Resolves rhbz#1994180 (EL9)
2021-08-21 19:43:19 +00:00
Resolves rhbz#1993240 (EL8)
2021-08-17 02:06:33 +00:00
2021-08-12 17:51:04 +00:00
* Thu Aug 12 2021 Rich Megginson <rmeggins@redhat.com> - 1.8.0-1
- drop support for Ansible 2.8 - min_ansible_version is now 2.9
Resolves rhbz#1989197 (EL9)
Resolves rhbz#1989199 (EL8)
- sshd - fix rhel6 support - failed to validate: error:Missing Match criteria for all Bad Match condition
Resolves rhbz#1991598 (EL9)
Resolves rhbz#1990947 (EL8)
2021-08-08 15:48:56 +00:00
* Tue Aug 10 2021 Rich Megginson <rmeggins@redhat.com> - 1.7.6-1
- storage - tests_create_lvmvdo_then_remove fails - Module dm-vdo not found
Resolves rhbz#1991141 (EL8)
Resolves rhbz#1991062 (EL9)
- storage - Get syntax errors in tests_lvm_errors.yml
Resolves rhbz#1990793 (EL8)
Resolves rhbz#1991142 (EL9)
2021-08-10 00:37:46 +00:00
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.7.5-2
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
2021-08-07 02:03:51 +00:00
* Fri Aug 06 2021 Rich Megginson <rmeggins@redhat.com> - 1.7.5-1
- logging, certificate - Instead of the archive module, use " t a r " command for backup.
Resolves rhbz#1984182 (EL9)
Resolves rhbz#1987096 (EL8)
- logging - Add a support for list value to server_host in the elasticsearch output
Resolves rhbz#1986460 (EL9)
Resolves rhbz#1986463 (EL8)
- logging - tests_relp.yml; Can't detect any of the required Python libraries cryptography (>= 1.2.3) or PyOpenSSL (>= 0.6)
Resolves rhbz#1989962 (EL9)
Resolves rhbz#1990142 (EL8)
2021-07-20 20:05:11 +00:00
* Fri Aug 06 2021 Rich Megginson <rmeggins@redhat.com> - 1.7.4-1
- metrics - Grafana dashboard not working after metrics role run unless services manually restarted
Resolves rhbz#1984150 (EL9)
Resolves rhbz#1978357 (EL8)
2021-08-03 23:23:59 +00:00
* Tue Aug 03 2021 Rich Megginson <rmeggins@redhat.com> - 1.7.3-1
- storage - tag tests that use NVME and SCSI
Resolves rhbz#1989211 (EL9)
Resolves rhbz#1989638 (EL8)
2021-08-03 16:10:52 +00:00
* Tue Aug 03 2021 Rich Megginson <rmeggins@redhat.com> - 1.7.2-1
- sshd - support for rhel9 managed hosts
Resolves rhbz#1989221 (EL9)
Resolves rhbz#1989638 (EL8)
2021-07-29 23:36:53 +00:00
* Thu Jul 29 2021 Rich Megginson <rmeggins@redhat.com> - 1.7.1-1
- network - tests_provider_nm.yml fails with an error: Failure in test 'I can manage a veth interface with NM after I managed it with initscripts.
Resolves rhbz#1935919
- network - _initscripts tests fail because " N o p a c k a g e n e t w o r k - s c r i p t s a v a i l a b l e . "
Resolves rhbz#1935916
- network - Test tests_bond_initscripts.yml failed to create interface
Resolves rhbz#1980870
- storage - covscan error - DEADCODE - vdopool if create_vdo else parent
Resolves rhbz#1985571 (EL9)
Resolves rhbz#1985572 (EL8)
- network - network: tests_bond_initscripts.yml leaves behind unusable resolv.conf in CI
Resolves rhbz#1915017
2021-07-28 21:55:20 +00:00
* Wed Jul 28 2021 Rich Megginson <rmeggins@redhat.com> - 1.7.0-1
- network - Skip tests on RHEL9 that use hostapd
Resolves rhbz#1945348
- network - Fix the bond test on DHCP
Resolves rhbz#1918252
- certificate, logging - Use 'tar' command instead of archive module
Resolves rhbz#1984182 (EL9)
Resolves rhbz#1987096 (EL8)
- kernel_settings - Disable bootloader testing on EL9
Resolves rhbz#1944599
- logging - Add a support for list value to server_host in the elasticsearch output
Resolves rhbz#1986460 (EL9)
Resolves rhbz#1986463 (EL8)
- storage - Add support for percentage-based volume sizes
Resolves rhbz#1984583 (EL9)
Resolves rhbz#1894642 (EL8)
- storage -storage_test_actual_size != storage_test_requested_size observed with tests_lvm_auto_size_cap.yml
Resolves rhbz#1986284 (EL8)
2021-07-23 14:33:36 +00:00
* Fri Jul 23 2021 Rich Megginson <rmeggins@redhat.com> - 1.6.1-1
- Error: device becoming unmanaged and pytest not reproducible in tests_integration_pytest.yml
Resolves rhbz#1985382 (EL9)
Resolves rhbz#1932699 (EL8)
- EPEL yum repository configuration for tests
Rebasing to latest picks up this fix - see rhel7 bz1980439
- connections: workaround DeprecationWarning for NM.SettingEthtool.set_feature()
Rebasing to latest picks up this fix
2021-07-16 03:09:15 +00:00
* Thu Jul 15 2021 Rich Megginson <rmeggins@redhat.com> - 1.6.0-1
- ha_cluster - add pacemaker cluster properties configuration
Resolves rhbz#1982913 (EL8)
Resolves rhbz#1982906 (EL9)
2021-07-16 00:03:58 +00:00
* Thu Jul 15 2021 Rich Megginson <rmeggins@redhat.com> - 1.5.0-1
- crypto_policies - rename 'policy modules' to 'subpolicies'
Resolves rhbz#1982896 (EL9)
Resolves rhbz#1982897 (EL8)
2021-08-04 22:39:11 +00:00
* Thu Jul 15 2021 Rich Megginson <rmeggins@redhat.com> - 1.4.2-1
- storage - relabel doesn't support - Fixed volume relabeling
Resolves rhbz#1876315 (EL8)
Resolves rhbz#1982841 (EL9)
2021-07-09 16:36:34 +00:00
* Fri Jul 9 2021 Rich Megginson <rmeggins@redhat.com> - 1.4.1-1
- network - Re-running the network system role results in " c h a n g e d : t r u e " when nothing has actually changed
Resolves rhbz#1980871
- network - Test tests_bond_initscripts.yml failed to create interface
Resolves rhbz#1980870
2021-07-08 23:08:28 +00:00
* Thu Jul 8 2021 Rich Megginson <rmeggins@redhat.com> - 1.4.0-1
- storage - LVMVDO support
Resolves rhbz#1882475
Resolves rhbz#1978488
2021-05-24 19:29:57 +00:00
* Wed Jun 23 2021 Rich Megginson <rmeggins@redhat.com> - 1.3.0-1
- ha_cluster - add pacemaker resources configuration
Resolves rhbz#1978726
- ha_cluster - code cleanup
Resolves rhbz#1978731
- Postfix RHEL system role README.md missing variables under the " R o l e V a r i a b l e s " section
Resolves rhbz#1978734
- logging README.html examples are rendered incorrectly
Resolves rhbz#1978758
- make postfix role idempotent - round 2
Resolves rhbz#1978760
- selinux task for semanage says Fedora in name but also runs on RHEL/CentOS 8
Resolves rhbz#1978740
- metrics role task to enable logging for targeted hosts not working
Resolves rhbz#1978746
- network - Only show stderr_lines by default
Resolves rhbz#1978731
- storage - LVMVDO support
Resolves rhbz#1978488
- storage - fix several linter issues
Resolves rhbz#1978731
- ssh - Fix variable precedence when invoked through roles
Resolves rhbz#1978745
- ssh - Update configuration options list for OpenSSH 8.6
Resolves rhbz#1978731
- sshd - Fix variable precedence when invoked through roles
Resolves rhbz#1978745
- sshd - Update configuration options list for OpenSSH 8.6
Resolves rhbz#1978731
- sshd - support for appending a snippet to configuration file
Resolves rhbz#1978752
- timesync - add NTS support
Resolves rhbz#1978753
- timesync - rebase to latest
Resolves rhbz#1978731
- nbde_client - rebase to latest
Resolves rhbz#1978731
2021-06-15 11:48:23 +00:00
* Thu Jun 17 2021 Sergei Petrosian <spetrosi@redhat.com> - 1.2.3-3
- Make the ansible_collection_files macro defined in Fedora automatically and
in RHEL manually consistent - having slash at the end to clean double-slashes
2021-06-10 09:49:50 +00:00
* Wed Jun 16 2021 Sergei Petrosian <spetrosi@redhat.com> - 1.2.3-2
- Remove slash (/) from the end of URLs to improve code readability
2021-06-14 18:27:44 +00:00
* Wed Jun 16 2021 Noriko Hosoi <nhosoi@redhat.com> - 1.2.3-1
- Add EL 9 support for timesync and network
Resolves rhbz#1952887
2021-06-15 22:40:42 +00:00
* Tue Jun 15 2021 Rich Megginson <rmeggins@redhat.com> - 1.2.2-3
- Fix HTML rendering of internal links when using pandoc/asciidoc
- Uses pandoc gfm instead of markdown_github
Resolves rhbz#1962976
2021-06-10 21:05:56 +00:00
* Fri Jun 11 2021 Noriko Hosoi <nhosoi@redhat.com> - 1.2.2-2
- Make spec file available for older versions of OSes.
- Drop python3-six dependency which was used by lsr_role2collection.py.
- Drop html files from rpm if the version has no markdown parser.
- Drop unnecessary python scripts which include python3 only code, e.g.,
f-strings.
Resolves rhbz#1970165
2021-06-09 15:16:26 +00:00
* Wed Jun 9 2021 Rich Megginson <rmeggins@redhat.com> - 1.2.2-1
- fix kdump tests_ssh for basic smoke test
Resolves rhbz#1957876
2021-05-21 15:35:11 +00:00
* Fri May 21 2021 Noriko Hosoi <nhosoi@redhat.com> - 1.2.1-1
- fix logging README.html examples' rendering problems
Resolves rhbz#1962374
- fix broken internal links in README.md files
Resolves rhbz#1962976
2021-06-10 21:05:56 +00:00
* Fri May 21 2021 Sergei Petrosian <spetrosi@redhat.com> - 1.2.0-2
2021-05-10 13:21:58 +00:00
- Add BuildRequires: rubygem-kramdown for Fedora and RHEL >= 9
2021-05-06 16:58:30 +00:00
* Fri May 14 2021 Rich Megginson <rmeggins@redhat.com> - 1.2.0-1
- rebase roles to latest upstream
Resolves rhbz#1957876
- make postfix role idempotent
Resolves rhbz#1960375
- use FQRN in postfix README
Resolves rhbz#1958963
- use relayhost in postfix README
Resolves rhbz#1866544
- use lazy unmount to fix umount: target is busy
Resolves rhbz#1945359
- network - Add support for ETHTOOL Ring option
Resolves rhbz#1959649
- storage: calltrace observed when set type: partition for storage_pools
Resolves rhbz#1854187
- ha_cluster - cannot read preshared key in binary format
Resolves rhbz#1952620
2021-05-13 21:05:31 +00:00
* Thu May 13 2021 Noriko Hosoi <nhosoi@redhat.com> - 1.1.0-2
- Dependencies in the collection packaging
Resolves rhbz#1954747
2021-04-01 21:04:05 +00:00
* Wed Apr 14 2021 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1
- rebase timesync role to latest upstream
Resolves rhbz#1937938
- timesync - add timesync_chrony_custom_settings variable for free-form
local configs
Resolves rhbz#1938023
- do not use ignore_errors in timesync role
Resolves rhbz#1938014
- support for timesync_max_distance to configure maxdistance/maxdist parameter
Resolves rhbz#1938016
- support for ntp xleave, filter, and hw timestamping
Resolves rhbz#1938020
2021-04-01 21:21:58 +00:00
- rebase selinux role to latest upstream
Resolves rhbz#1937938
- should not reload the SELinux policy if its not changed
Resolves rhbz#1757869
- Ability to install custom SELinux module via Ansible
Resolves rhbz#1848683
2021-04-01 21:28:24 +00:00
- rebase storage role to latest upstream
Resolves rhbz#1937938
2021-04-01 21:40:54 +00:00
- rebase network role to latest upstream
Resolves rhbz#1937938
- support for ipv6_disabled to disable ipv6 for address
Resolves rhbz#1939711
2021-04-01 21:46:47 +00:00
- rebase postfix role to latest upstream
Resolves rhbz#1937938
2021-04-01 21:51:51 +00:00
- rebase metrics role to latest upstream
Resolves rhbz#1937938
2021-04-01 21:55:56 +00:00
- rebase sshd role to latest upstream
Resolves rhbz#1937938
2021-04-01 22:13:52 +00:00
- rebase remaining roles to latest upstream
Resolves rhbz#1937938
2021-04-01 22:20:21 +00:00
- Generate %%files dynamically
2021-04-01 22:24:50 +00:00
- add vpn role
Resolves rhbz#1943679
2021-04-01 21:04:05 +00:00
2021-03-17 00:39:28 +00:00
* Tue Apr 13 2021 Noriko Hosoi <nhosoi@redhat.com> - 1.0.1-2
- Adding the -collection-artifact subpackage, enabled using
" - - w i t h c o l l e c t i o n _ a r t i f a c t " . It is used for importing to
ansible galaxy/automation hub.
2021-04-16 18:46:15 +00:00
- README.html files (main README for the collection and README
for each role) are not located in /usr/share/ansible/collections,
but just put in /usr/share/doc/linux-system-roles/collection in rpm.
- The README.html files are not included in the collection artifact.
2021-04-21 18:36:28 +00:00
- Fixing " s s h d r o l e R E A D M E . m d e x a m p l e s u s e i n c o r r e c t r o l e n a m e " .
2021-03-17 00:39:28 +00:00
2021-04-05 23:03:35 +00:00
* Tue Apr 6 2021 Pavel Cahyna <pcahyna@redhat.com> - 1.0.1-1
- Sync with RHEL version 1.0.1-1.el8
Fix description field in galaxy.yml
Remove " T e c h n o l o g y P r e v i e w " 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
2021-02-22 22:36:10 +00:00
* Mon Feb 22 2021 Pavel Cahyna <pcahyna@redhat.com> - 1.0.0-16
- Sync with RHEL version 1.0.0-31
Rebase certificate role to pick up a test fix
Rebase logging role to fix default private key path,
upstream PR #218
Update collection doc transformation to match a modified text
and include the Tech Preview note again (for RHEL)
* Fri Feb 19 2021 Pavel Cahyna <pcahyna@redhat.com> - 1.0.0-15
- Sync with RHEL version 1.0.0-29
Added roles: ssh, ha_cluster
Updated roles: certificate, kernel_settings, nbde_client,
logging, network
Improvements to collection build and metadata
- Two further improvements from RHEL:
Corrected merge botch in files list - make ssh README a docfile
Dynamically update galaxy.yml with our metadata even on Fedora,
we can't rely on correct version number in auto-maintenance
* Tue Feb 9 2021 Pavel Cahyna <pcahyna@redhat.com> - 1.0.0-14
- Synchronize with RHEL, new roles added:
storage, metrics, tlog, kernel_settings, logging, nbde_server,
nbde_client, certificate, crypto_policies, sshd, and the
fedora.linux_system_roles collection.
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Dec 05 2018 Till Maas <opensource@till.name> - 1.0-8
- Install roles at /usr/share/linux-system-roles, use symlinks in
/usr/share/ansible/roles/ to allow using alternatives
* Wed Nov 14 2018 Mike DePaulo <mikedep333@gmail.com> - 1.0-7
- spec file improvement: Remove unnecessary %%doc for files under _pkgdocdor
- Install license files under /usr/share/licenses instead of /usr/share/doc
* Tue Nov 06 2018 Mike DePaulo <mikedep333@gmail.com> - 1.0-7
- Fix rpm build for added example timesync example playbooks
- Misc spec file comments fixes
- Fix rpmlint error by escaping a previous changelog entry with a macro
- Comply with Fedora guidelines by always using " c p - p " in %%install
- Update %%description to be different for Fedora.
* Wed Oct 24 2018 Pavel Cahyna <pcahyna@redhat.com> - 1.0-7
- Update to latest versions of selinux, kdump and timesync.
- Update to the latest revision of postfix, fixes README markup
- Add Obsoletes for the -techpreview subpackage introduced mistakenly in 1.0-1
- spec file improvement: Unify the source macros with deftag() and defcommit()
* Tue Oct 23 2018 Till Maas <opensource@till.name> - 1.0-6
- Update Network system role to latest commit to include Fedora 29 fixes
- Update example timesync example playbooks
- Add comments about upstream status
* Tue Aug 14 2018 Pavel Cahyna <pcahyna@redhat.com> - 1.0-4
- Format the READMEs as html, by vdolezal, with changes to use highlight
(source-highlight does not understand YAML)
* Thu Aug 9 2018 Pavel Cahyna <pcahyna@redhat.com> - 1.0-3
- Rebase the network role to the last revision (d866422).
Many improvements to tests, introduces autodetection of the current provider
and defaults to using profile name as interface name.
- Rebase the selinux, timesync and kdump roles to their 1.0rc1 versions.
Many changes to the role interfaces to make them more consistent
and conforming to Ansible best practices.
- Update the description.
* Fri May 11 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-4
- Fix complaints about /usr/bin/python during RPM build by making the affected scripts non-exec
- Fix merge botch
* Mon Mar 19 2018 Troy Dawson <tdawson@redhat.com> - 0.6-3.1
- Use -a (after cd) instead of -b (before cd) in %%setup
* Wed Mar 14 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-3
- Minor corrections of the previous change by Till Maas.
* Fri Mar 9 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-2
- Document network role options: static routes, ethernet, dns
Upstream PR#36, bz1550128, documents bz1487747 and bz1478576
* Tue Jan 30 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-1
- Drop hard dependency on ansible (#1525655), patch from Yaakov Selkowitz
- Update the network role to version 0.4, solves bz#1487747, bz#1478576
* Tue Dec 19 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.5-3
- kdump: fix the wrong conditional for ssh checking and improve test (PR#10)
* Tue Nov 07 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.5-2
- kdump: add ssh support. upstream PR#9, rhbz1478707
* Tue Oct 03 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.5-1
- SELinux: fix policy reload when SELinux is disabled on CentOS/RHEL 6
(bz#1493574)
- network: update to b856c7481bf5274d419f71fb62029ea0044b3ec1 :
makes the network role idempotent (bz#1476053) and fixes manual
network provider selection (bz#1485074).
* Mon Aug 28 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.4-1
- network: update to b9b6f0a7969e400d8d6ba0ac97f69593aa1e8fa5:
ensure that state:absent followed by state:up works (bz#1478910), and change
the example IP adresses to the IANA-assigned ones.
- SELinux: fix the case when SELinux is disabled (bz#1479546).
* Tue Aug 8 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.3-2
- We can't change directories to symlinks (rpm bug #447156) so keep the old
names and create the new names as symlinks.
* Tue Aug 8 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.3-1
- Change the prefix to linux-system-roles., keeping compatibility
symlinks.
- Update the network role to dace7654feb7b5629ded0734c598e087c2713265:
adds InfiniBand support and other fixes.
- Drop a patch included upstream.
* Mon Jun 26 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.2-2
- Leave a copy of README and COPYING in every role's directory, as suggested by T. Bowling.
- Move the network example inventory to the documentation directory together.
with the example playbooks and delete the now empty " e x a m p l e s " directory.
- Use proper reserved (by RFC 7042) MAC addresses in the network examples.
* Tue Jun 6 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.2-1
- Update the networking role to version 0.2 (#1459203)
- Version every role and the package separately. They live in separate repos
and upstream release tags are not coordinated.
* Mon May 22 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.1-2
- Prefix the roles in examples and documentation with rhel-system-roles.
* Thu May 18 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.1-1
- Update to 0.1 (first upstream release).
- Remove the tuned role, it is not ready yet.
- Move the example playbooks to /usr/share/doc/rhel-system-roles/$SUBSYSTEM
directly to get rid of an extra directory.
- Depend on ansible.
* Thu May 4 2017 Pavel Cahyna <pcahyna@redhat.com> - 0-0.1.20170504
- Initial release.
- kdump r. fe8bb81966b60fa8979f3816a12b0c7120d71140
- postfix r. 43eec5668425d295dce3801216c19b1916df1f9b
- selinux r. 1e4a21f929455e5e76dda0b12867abaa63795ae7
- timesync r. 33a1a8c349de10d6281ed83d4c791e9177d7a141
- tuned r. 2e8bb068b9815bc84287e9b6dc6177295ffdf38b
- network r. 03ff040df78a14409a0d89eba1235b8f3e50a750