4f0c496
%if 0%{?rhel}
4f0c496
Name: rhel-system-roles
4f0c496
%else
4f0c496
Name: linux-system-roles
4f0c496
%endif
4f0c496
Summary: Set of interfaces for unified system management
4f0c496
Version: 1.0
fbaa090
Release: 9%{?dist}
4f0c496
4f0c496
#Group: Development/Libraries
4f0c496
License: GPLv3+ and MIT and BSD
ceb7e05
%global installbase %{_datadir}/linux-system-roles
ceb7e05
%global _pkglicensedir %{_licensedir}/%{name}
4f0c496
%global rolealtprefix linux-system-roles.
ceb7e05
%global roleprefix %{nil}
ceb7e05
%global rolealtrelpath ../../linux-system-roles/
ceb7e05
%if 0%{?rhel}
4f0c496
%global roleprefix %{name}.
ceb7e05
%global installbase %{_datadir}/ansible/roles
ceb7e05
%global rolealtrelpath %{nil}
ceb7e05
%endif
4f0c496
0179288
# For each role, call either decommit() or deftag(). The other macros
b6e295a
# (%%id and %%shortid) can be then used in the same way in both cases.
0179288
# This way  the rest of the spec file des not need to know whether we are
0179288
# dealing with a tag or a commit.
e85e068
%define defcommit() %{expand:%%global id%{1} %{2}
e85e068
%%global shortid%{1} %%(c=%%{id%{1}}; echo ${c:0:7})
e85e068
}
e85e068
e85e068
%define deftag() %{expand:%%global id%{1} %{2}
e85e068
%%global shortid%{1} %{2}
e85e068
}
e85e068
e85e068
#%%defcommit 0 fe8bb81966b60fa8979f3816a12b0c7120d71140
4f0c496
%global rolename0 kdump
e85e068
%deftag 0 1.0.0
4f0c496
e85e068
%defcommit 1 611754bcc79783d026177c79a796c6d6343d1be5
4f0c496
%global rolename1 postfix
e85e068
#%%deftag 1 0.1
4f0c496
e85e068
#%%defcommit 2 6dd057aa434a31cb6ee67d02967362f9131e0c50
4f0c496
%global rolename2 selinux
e85e068
%deftag 2 1.0.0
4f0c496
e85e068
#%%defcommit 3 33a1a8c349de10d6281ed83d4c791e9177d7a141
4f0c496
%global rolename3 timesync
e85e068
%deftag 3 1.0.0
4f0c496
e85e068
%defcommit 5 64b2d76de74df2d480394d02aae204beda4d9257
4f0c496
%global rolename5 network
e85e068
#%%deftag 5 1.0.0
4f0c496
e85e068
Source: https://github.com/linux-system-roles/%{rolename0}/archive/%{id0}.tar.gz#/%{rolename0}-%{shortid0}.tar.gz
e85e068
Source1: https://github.com/linux-system-roles/%{rolename1}/archive/%{id1}.tar.gz#/%{rolename1}-%{shortid1}.tar.gz
e85e068
Source2: https://github.com/linux-system-roles/%{rolename2}/archive/%{id2}.tar.gz#/%{rolename2}-%{shortid2}.tar.gz
e85e068
Source3: https://github.com/linux-system-roles/%{rolename3}/archive/%{id3}.tar.gz#/%{rolename3}-%{shortid3}.tar.gz
e85e068
Source5: https://github.com/linux-system-roles/%{rolename5}/archive/%{id5}.tar.gz#/%{rolename5}-%{shortid5}.tar.gz
4f0c496
77cf016
# Merged upstream: https://github.com/linux-system-roles/timesync/pull/25
33708d7
Source6: single-pool.yml
33708d7
Source7: multiple-ntp-servers.yml
4f0c496
dd1a2b9
# Simple script to format the READMEs as html with changes to use highlight
dd1a2b9
# (source-highlight does not understand YAML)
dd1a2b9
#
dd1a2b9
# Only needed for RPM packages because upstream users will just use markdown,
dd1a2b9
# which is the standard for Ansible docs.
4f0c496
Source8: md2html.sh
4f0c496
ceb7e05
%if "%{?roleprefix:x}" == "rhel-system-roles."
4f0c496
Patch1: rhel-system-roles-%{rolename1}-prefix.diff
4f0c496
Patch2: rhel-system-roles-%{rolename2}-prefix.diff
4f0c496
Patch3: rhel-system-roles-%{rolename3}-prefix.diff
4f0c496
Patch5: rhel-system-roles-%{rolename5}-prefix.diff
4f0c496
%endif
4f0c496
81cf710
# Not suitable for upstream, since the files need to be executable there
4f0c496
Patch52: network-permissions.diff
4f0c496
4f0c496
Url: https://github.com/linux-system-roles/
4f0c496
BuildArch: noarch
4f0c496
77cf016
# These are needed for md2html.sh to build the documentation
4f0c496
BuildRequires: asciidoc
4f0c496
BuildRequires: pandoc
4f0c496
BuildRequires: highlight
4f0c496
fadab11
Obsoletes: rhel-system-roles-techpreview < 1.0-3
fadab11
25bb523
# We need to put %%description within the if block to avoid empty
25bb523
# lines showing up.
25bb523
%if 0%{?rhel}
4f0c496
%description
4f0c496
Collection of Ansible roles and modules that provide a stable and
4f0c496
consistent configuration interface for managing multiple versions
4f0c496
of Red Hat Enterprise Linux.
25bb523
%else
25bb523
%description
25bb523
Collection of Ansible roles and modules that provide a stable and
25bb523
consistent configuration interface for managing multiple versions
25bb523
of Fedora, Red Hat Enterprise Linux & CentOS.
25bb523
%endif
4f0c496
4f0c496
%prep
4f0c496
%setup -qc -a1 -a2 -a3 -a5
e85e068
cd %{rolename0}-%{id0}
4f0c496
#kdump patches here if necessary
4f0c496
cd ..
e85e068
cd %{rolename1}-%{id1}
ceb7e05
%if "%{?roleprefix:x}" == "rhel-system-roles."
4f0c496
%patch1 -p1
4f0c496
%endif
4f0c496
cd ..
e85e068
cd %{rolename2}-%{id2}
ceb7e05
%if "%{?roleprefix:x}" == "rhel-system-roles."
4f0c496
%patch2 -p1
4f0c496
%endif
4f0c496
cd ..
e85e068
cd %{rolename3}-%{id3}
ceb7e05
%if "%{?roleprefix:x}" == "rhel-system-roles."
4f0c496
%patch3 -p1
4f0c496
%endif
4f0c496
cd ..
e85e068
cd %{rolename5}-%{id5}
ceb7e05
%if "%{?roleprefix:x}" == "rhel-system-roles."
4f0c496
%patch5 -p1
4f0c496
%endif
4f0c496
%patch52 -p1
4f0c496
cd ..
4f0c496
4f0c496
%build
4f0c496
sh %{SOURCE8} \
e85e068
%{rolename0}-%{id0}/README.md \
e85e068
%{rolename1}-%{id1}/README.md \
e85e068
%{rolename2}-%{id2}/README.md \
e85e068
%{rolename3}-%{id3}/README.md \
e85e068
%{rolename5}-%{id5}/README.md
4f0c496
4f0c496
%install
ceb7e05
mkdir -p $RPM_BUILD_ROOT%{installbase}
4f0c496
mkdir -p $RPM_BUILD_ROOT%{_datadir}/ansible/roles
4f0c496
ceb7e05
cp -pR %{rolename0}-%{id0}      $RPM_BUILD_ROOT%{installbase}/%{roleprefix}%{rolename0}
ceb7e05
cp -pR %{rolename1}-%{id1}      $RPM_BUILD_ROOT%{installbase}/%{roleprefix}%{rolename1}
ceb7e05
cp -pR %{rolename2}-%{id2}      $RPM_BUILD_ROOT%{installbase}/%{roleprefix}%{rolename2}
ceb7e05
cp -pR %{rolename3}-%{id3}      $RPM_BUILD_ROOT%{installbase}/%{roleprefix}%{rolename3}
ceb7e05
cp -pR %{rolename5}-%{id5}      $RPM_BUILD_ROOT%{installbase}/%{roleprefix}%{rolename5}
4f0c496
4f0c496
%if 0%{?rolealtprefix:1}
ceb7e05
ln -s    %{rolealtrelpath}%{roleprefix}%{rolename0}   $RPM_BUILD_ROOT%{_datadir}/ansible/roles/%{rolealtprefix}%{rolename0}
ceb7e05
ln -s    %{rolealtrelpath}%{roleprefix}%{rolename1}   $RPM_BUILD_ROOT%{_datadir}/ansible/roles/%{rolealtprefix}%{rolename1}
ceb7e05
ln -s    %{rolealtrelpath}%{roleprefix}%{rolename2}   $RPM_BUILD_ROOT%{_datadir}/ansible/roles/%{rolealtprefix}%{rolename2}
ceb7e05
ln -s    %{rolealtrelpath}%{roleprefix}%{rolename3}   $RPM_BUILD_ROOT%{_datadir}/ansible/roles/%{rolealtprefix}%{rolename3}
ceb7e05
ln -s    %{rolealtrelpath}%{roleprefix}%{rolename5}   $RPM_BUILD_ROOT%{_datadir}/ansible/roles/%{rolealtprefix}%{rolename5}
4f0c496
%endif
4f0c496
4f0c496
mkdir -p $RPM_BUILD_ROOT%{_pkgdocdir}/kdump
4f0c496
mkdir -p $RPM_BUILD_ROOT%{_pkgdocdir}/postfix
4f0c496
mkdir -p $RPM_BUILD_ROOT%{_pkgdocdir}/selinux
4f0c496
mkdir -p $RPM_BUILD_ROOT%{_pkgdocdir}/timesync
33708d7
install -p -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_pkgdocdir}/timesync/example-single-pool.yml
33708d7
install -p -m 644 %{SOURCE7} $RPM_BUILD_ROOT%{_pkgdocdir}/timesync/example-multiple-ntp-servers.yml
4f0c496
mkdir -p $RPM_BUILD_ROOT%{_pkgdocdir}/network
23afe6b
mkdir -p $RPM_BUILD_ROOT%{_pkglicensedir}
4f0c496
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}kdump/README.md \
ceb7e05
    $RPM_BUILD_ROOT%{installbase}/%{roleprefix}kdump/README.html \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/kdump
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}kdump/COPYING \
23afe6b
    $RPM_BUILD_ROOT%{_pkglicensedir}/kdump.COPYING
4f0c496
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}postfix/README.md \
ceb7e05
    $RPM_BUILD_ROOT%{installbase}/%{roleprefix}postfix/README.html \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/postfix
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}postfix/COPYING \
23afe6b
    $RPM_BUILD_ROOT%{_pkglicensedir}/postfix.COPYING
4f0c496
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}selinux/README.md \
ceb7e05
    $RPM_BUILD_ROOT%{installbase}/%{roleprefix}selinux/README.html \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/selinux
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}selinux/COPYING \
23afe6b
    $RPM_BUILD_ROOT%{_pkglicensedir}/selinux.COPYING
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}selinux/selinux-playbook.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/selinux/example-selinux-playbook.yml
4f0c496
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}timesync/README.md \
ceb7e05
    $RPM_BUILD_ROOT%{installbase}/%{roleprefix}timesync/README.html \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/timesync
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}timesync/COPYING \
23afe6b
    $RPM_BUILD_ROOT%{_pkglicensedir}/timesync.COPYING
4f0c496
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/README.md \
ceb7e05
    $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/README.html \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/LICENSE \
23afe6b
    $RPM_BUILD_ROOT%{_pkglicensedir}/network.LICENSE
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/bond-with-vlan.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-bond-with-vlan-playbook.yml
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/bridge-with-vlan.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-bridge-with-vlan-playbook.yml
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/eth-simple-auto.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-eth-simple-auto-playbook.yml
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/eth-with-vlan.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-eth-with-vlan-playbook.yml
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/infiniband.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-infiniband-playbook.yml
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/macvlan.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-macvlan-playbook.yml
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/remove-profile.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-remove-profile-playbook.yml
ceb7e05
rm $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/remove-profile.yml
ceb7e05
cp -p $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/down-profile.yml \
4f0c496
    $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-down-profile-playbook.yml
ceb7e05
rm $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/down-profile.yml
ceb7e05
mv $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/inventory \
4f0c496
   $RPM_BUILD_ROOT%{_pkgdocdir}/network/example-inventory
4f0c496
ceb7e05
rm $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/.gitignore
ceb7e05
rm $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/tests/.gitignore
ceb7e05
rm $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples/roles
ceb7e05
rmdir $RPM_BUILD_ROOT%{installbase}/%{roleprefix}network/examples
4f0c496
4f0c496
%files
ceb7e05
%dir %{installbase}
4f0c496
%if 0%{?rolealtprefix:1}
4f0c496
%{_datadir}/ansible/roles/%{rolealtprefix}kdump
4f0c496
%{_datadir}/ansible/roles/%{rolealtprefix}postfix
4f0c496
%{_datadir}/ansible/roles/%{rolealtprefix}selinux
4f0c496
%{_datadir}/ansible/roles/%{rolealtprefix}timesync
4f0c496
%{_datadir}/ansible/roles/%{rolealtprefix}network
4f0c496
%endif
ceb7e05
%{installbase}/%{roleprefix}kdump
ceb7e05
%{installbase}/%{roleprefix}postfix
ceb7e05
%{installbase}/%{roleprefix}selinux
ceb7e05
%{installbase}/%{roleprefix}timesync
ceb7e05
%{installbase}/%{roleprefix}network
c88da19
%{_pkgdocdir}/*/example-*-playbook.yml
c88da19
%{_pkgdocdir}/network/example-inventory
c88da19
%{_pkgdocdir}/timesync/example-multiple-ntp-servers.yml
c88da19
%{_pkgdocdir}/timesync/example-single-pool.yml
c88da19
%{_pkgdocdir}/*/README.md
c88da19
%{_pkgdocdir}/*/README.html
ceb7e05
%doc %{installbase}/%{roleprefix}kdump/README.md
ceb7e05
%doc %{installbase}/%{roleprefix}postfix/README.md
ceb7e05
%doc %{installbase}/%{roleprefix}selinux/README.md
ceb7e05
%doc %{installbase}/%{roleprefix}timesync/README.md
ceb7e05
%doc %{installbase}/%{roleprefix}network/README.md
ceb7e05
%doc %{installbase}/%{roleprefix}kdump/README.html
ceb7e05
%doc %{installbase}/%{roleprefix}postfix/README.html
ceb7e05
%doc %{installbase}/%{roleprefix}selinux/README.html
ceb7e05
%doc %{installbase}/%{roleprefix}timesync/README.html
ceb7e05
%doc %{installbase}/%{roleprefix}network/README.html
4f0c496
23afe6b
%license %{_pkglicensedir}/*
ceb7e05
%license %{installbase}/%{roleprefix}kdump/COPYING
ceb7e05
%license %{installbase}/%{roleprefix}postfix/COPYING
ceb7e05
%license %{installbase}/%{roleprefix}selinux/COPYING
ceb7e05
%license %{installbase}/%{roleprefix}timesync/COPYING
ceb7e05
%license %{installbase}/%{roleprefix}network/LICENSE
4f0c496
4f0c496
%changelog
fbaa090
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-9
fbaa090
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
fbaa090
ceb7e05
* Wed Dec 05 2018 Till Maas <opensource@till.name> - 1.0-8
ceb7e05
- Install roles at /usr/share/linux-system-roles, use symlinks in
ceb7e05
  /usr/share/ansible/roles/ to allow using alternatives
ceb7e05
c88da19
* Wed Nov 14 2018 Mike DePaulo <mikedep333@gmail.com> - 1.0-7
c88da19
- spec file improvement: Remove unnecessary %%doc for files under _pkgdocdor
23afe6b
- Install license files under /usr/share/licenses instead of /usr/share/doc
c88da19
25bb523
* Tue Nov 06 2018 Mike DePaulo <mikedep333@gmail.com> - 1.0-7
d9634a6
- Fix rpm build for added example timesync example playbooks
d9634a6
- Misc spec file comments fixes
d9634a6
- Fix rpmlint error by escaping a previous changelog entry with a macro
a4f11b7
- Comply with Fedora guidelines by always using "cp -p" in %%install
25bb523
- Update %%description to be different for Fedora.
d9634a6
1add951
* Wed Oct 24 2018 Pavel Cahyna <pcahyna@redhat.com> - 1.0-7
1add951
- Update to latest versions of selinux, kdump and timesync.
eb5bc48
- Update to the latest revision of postfix, fixes README markup
1add951
- Add Obsoletes for the -techpreview subpackage introduced mistakenly in 1.0-1
b6e295a
- spec file improvement: Unify the source macros with deftag() and defcommit()
1add951
451d940
* Tue Oct 23 2018 Till Maas <opensource@till.name> - 1.0-6
451d940
- Update Network system role to latest commit to include Fedora 29 fixes
451d940
- Update example timesync example playbooks
451d940
- Add comments about upstream status
451d940
4f0c496
* Tue Aug 14 2018 Pavel Cahyna <pcahyna@redhat.com> - 1.0-4
4f0c496
- Format the READMEs as html, by vdolezal, with changes to use highlight
4f0c496
  (source-highlight does not understand YAML)
4f0c496
4f0c496
* Thu Aug  9 2018 Pavel Cahyna <pcahyna@redhat.com> - 1.0-3
4f0c496
- Rebase the network role to the last revision (d866422).
4f0c496
  Many improvements to tests, introduces autodetection of the current provider
4f0c496
  and defaults to using profile name as interface name.
4f0c496
- Rebase the selinux, timesync and kdump roles to their 1.0rc1 versions.
4f0c496
  Many changes to the role interfaces to make them more consistent
4f0c496
  and conforming to Ansible best practices.
4f0c496
- Update the description.
4f0c496
4f0c496
* Fri May 11 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-4
4f0c496
- Fix complaints about /usr/bin/python during RPM build by making the affected scripts non-exec
4f0c496
- Fix merge botch
4f0c496
4f0c496
* Mon Mar 19 2018 Troy Dawson <tdawson@redhat.com> - 0.6-3.1
acb49f6
- Use -a (after cd) instead of -b (before cd) in %%setup
4f0c496
4f0c496
* Wed Mar 14 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-3
4f0c496
- Minor corrections of the previous change by Till Maas.
4f0c496
4f0c496
* Fri Mar  9 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-2
4f0c496
- Document network role options: static routes, ethernet, dns
4f0c496
  Upstream PR#36, bz1550128, documents bz1487747 and bz1478576
4f0c496
4f0c496
* Tue Jan 30 2018 Pavel Cahyna <pcahyna@redhat.com> - 0.6-1
4f0c496
- Drop hard dependency on ansible (#1525655), patch from Yaakov Selkowitz
4f0c496
- Update the network role to version 0.4, solves bz#1487747, bz#1478576
4f0c496
4f0c496
* Tue Dec 19 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.5-3
4f0c496
- kdump: fix the wrong conditional for ssh checking and improve test (PR#10)
4f0c496
4f0c496
* Tue Nov 07 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.5-2
4f0c496
- kdump: add ssh support. upstream PR#9, rhbz1478707
4f0c496
4f0c496
* Tue Oct 03 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.5-1
4f0c496
- SELinux: fix policy reload when SELinux is disabled on CentOS/RHEL 6
4f0c496
  (bz#1493574)
4f0c496
- network: update to b856c7481bf5274d419f71fb62029ea0044b3ec1 :
4f0c496
  makes the network role idempotent (bz#1476053) and fixes manual
4f0c496
  network provider selection (bz#1485074).
4f0c496
4f0c496
* Mon Aug 28 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.4-1
4f0c496
- network: update to b9b6f0a7969e400d8d6ba0ac97f69593aa1e8fa5:
4f0c496
  ensure that state:absent followed by state:up works (bz#1478910), and change
4f0c496
  the example IP adresses to the IANA-assigned ones.
4f0c496
- SELinux: fix the case when SELinux is disabled (bz#1479546).
4f0c496
4f0c496
* Tue Aug 8 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.3-2
4f0c496
- We can't change directories to symlinks (rpm bug #447156) so keep the old
4f0c496
  names and create the new names as symlinks.
4f0c496
4f0c496
* Tue Aug 8 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.3-1
4f0c496
- Change the prefix to linux-system-roles., keeping compatibility
4f0c496
  symlinks.
4f0c496
- Update the network role to dace7654feb7b5629ded0734c598e087c2713265:
4f0c496
  adds InfiniBand support and other fixes.
4f0c496
- Drop a patch included upstream.
4f0c496
4f0c496
* Mon Jun 26 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.2-2
4f0c496
- Leave a copy of README and COPYING in every role's directory, as suggested by T. Bowling.
4f0c496
- Move the network example inventory to the documentation directory together.
4f0c496
  with the example playbooks and delete the now empty "examples" directory.
4f0c496
- Use proper reserved (by RFC 7042) MAC addresses in the network examples.
4f0c496
4f0c496
* Tue Jun 6 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.2-1
4f0c496
- Update the networking role to version 0.2 (#1459203)
4f0c496
- Version every role and the package separately. They live in separate repos
4f0c496
  and upstream release tags are not coordinated.
4f0c496
4f0c496
* Mon May 22 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.1-2
4f0c496
- Prefix the roles in examples and documentation with rhel-system-roles.
4f0c496
4f0c496
* Thu May 18 2017 Pavel Cahyna <pcahyna@redhat.com> - 0.1-1
4f0c496
- Update to 0.1 (first upstream release).
4f0c496
- Remove the tuned role, it is not ready yet.
4f0c496
- Move the example playbooks to /usr/share/doc/rhel-system-roles/$SUBSYSTEM
4f0c496
  directly to get rid of an extra directory.
4f0c496
- Depend on ansible.
4f0c496
4f0c496
* Thu May 4 2017  Pavel Cahyna <pcahyna@redhat.com> - 0-0.1.20170504
4f0c496
- Initial release.
4f0c496
- kdump r. fe8bb81966b60fa8979f3816a12b0c7120d71140
4f0c496
- postfix r. 43eec5668425d295dce3801216c19b1916df1f9b
4f0c496
- selinux r. 1e4a21f929455e5e76dda0b12867abaa63795ae7
4f0c496
- timesync r. 33a1a8c349de10d6281ed83d4c791e9177d7a141
4f0c496
- tuned r. 2e8bb068b9815bc84287e9b6dc6177295ffdf38b
4f0c496
- network r. 03ff040df78a14409a0d89eba1235b8f3e50a750
4f0c496