Update to 130-1
- cockpit.file() can read non-memory-mappable file - Add kdump configuration user interface - Allow container Registry Console user names with '@' sign
This commit is contained in:
parent
a536696436
commit
8dd0046726
1
.gitignore
vendored
1
.gitignore
vendored
@ -98,3 +98,4 @@
|
||||
/cockpit-125.tar.xz
|
||||
/cockpit-126.tar.xz
|
||||
/cockpit-129.tar.xz
|
||||
/cockpit-130.tar.xz
|
||||
|
28
cockpit.spec
28
cockpit.spec
@ -1,5 +1,5 @@
|
||||
# This spec file has been automatically updated
|
||||
Version: 129
|
||||
Version: 130
|
||||
Release: 1%{?dist}
|
||||
#
|
||||
# This file is maintained at the following location:
|
||||
@ -172,6 +172,9 @@ find %{buildroot}%{_datadir}/%{name}/systemd -type f >> system.list
|
||||
echo '%dir %{_datadir}/%{name}/users' >> system.list
|
||||
find %{buildroot}%{_datadir}/%{name}/users -type f >> system.list
|
||||
|
||||
echo '%dir %{_datadir}/%{name}/kdump' >> kdump.list
|
||||
find %{buildroot}%{_datadir}/%{name}/kdump -type f >> kdump.list
|
||||
|
||||
echo '%dir %{_datadir}/%{name}/sosreport' > sosreport.list
|
||||
find %{buildroot}%{_datadir}/%{name}/sosreport -type f >> sosreport.list
|
||||
|
||||
@ -228,9 +231,9 @@ sed -i '/\.map\(\.gz\)\?$/d' *.list
|
||||
tar -C %{buildroot}/usr/src/debug -cf - . | tar -C %{buildroot} -xf -
|
||||
rm -rf %{buildroot}/usr/src/debug
|
||||
|
||||
# On RHEL subscriptions, networkmanager, selinux, and sosreport are part of the system package
|
||||
# On RHEL kdump, subscriptions, networkmanager, selinux, and sosreport are part of the system package
|
||||
%if 0%{?rhel}
|
||||
cat subscriptions.list sosreport.list networkmanager.list selinux.list >> system.list
|
||||
cat kdump.list subscriptions.list sosreport.list networkmanager.list selinux.list >> system.list
|
||||
%endif
|
||||
|
||||
%find_lang %{name}
|
||||
@ -388,6 +391,8 @@ Provides: %{name}-users = %{version}-%{release}
|
||||
%if 0%{?rhel}
|
||||
Provides: %{name}-networkmanager = %{version}-%{release}
|
||||
Requires: NetworkManager
|
||||
Provides: %{name}-kdump = %{version}-%{release}
|
||||
Requires: kexec-tools
|
||||
# Optional components (only when soft deps are supported)
|
||||
%if 0%{?fedora} >= 24 || 0%{?rhel} >= 8
|
||||
Recommends: NetworkManager-team
|
||||
@ -456,6 +461,18 @@ test -f %{_bindir}/firewall-cmd && firewall-cmd --reload --quiet || true
|
||||
|
||||
%if 0%{?rhel} == 0
|
||||
|
||||
%package kdump
|
||||
Summary: Cockpit user interface for kernel crash dumping
|
||||
Requires: %{name}-bridge >= %{required_base}
|
||||
Requires: %{name}-shell >= %{required_base}
|
||||
Requires: kexec-tools
|
||||
BuildArch: noarch
|
||||
|
||||
%description kdump
|
||||
The Cockpit component for configuring kernel crash dumping.
|
||||
|
||||
%files kdump -f kdump.list
|
||||
|
||||
%package sosreport
|
||||
Summary: Cockpit user interface for diagnostic reports
|
||||
Requires: %{name}-bridge >= %{required_base}
|
||||
@ -576,6 +593,11 @@ pulls in some necessary packages via dependencies.
|
||||
|
||||
# The changelog is automatically generated and merged
|
||||
%changelog
|
||||
* Wed Jan 25 2017 Stef Walter <<stefw@redhat.com>> - 130-1
|
||||
- cockpit.file() can read non-memory-mappable file
|
||||
- Add kdump configuration user interface
|
||||
- Allow container Registry Console user names with '@' sign
|
||||
|
||||
* Wed Jan 18 2017 Stef Walter <<stefw@redhat.com>> - 129-1
|
||||
- Diagnostic sosreport feature now works on RHEL Atomic again
|
||||
- The configure script has a --disable-ssh option to toggle libssh dep
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (cockpit-129.tar.xz) = b9fa59dc92e5fccb21e34801e91fb6901665d4888d57ed31f2d41d932c9b7a6640bf19664a186dfbeb611fb2cfbcb476896cc8899ae4f30475d6787a3ab30c25
|
||||
SHA512 (cockpit-130.tar.xz) = 3e3f824ff1627ccc4681a06629b04a9c5cd102d3da5eba6b5fb46f96213ad086c4113d081aad1b24e1bdad6ecc5df84efc0e71891baa8fec8122c3e741afc8ff
|
||||
|
Loading…
Reference in New Issue
Block a user