Update to version 119

* Adds basic VM Management and Monitoring
* MDRaid job improvements
* Show unmanaged network devices
* Better errors when formating storage devices
* Updated VNC example
* Port subscriptions package to react
* Allow branding.css to overide shell css
This commit is contained in:
Cockpit Project 2016-09-29 18:25:16 +00:00
parent 2b397044ab
commit 049c2bf13d
3 changed files with 30 additions and 4 deletions

1
.gitignore vendored
View File

@ -89,3 +89,4 @@
/cockpit-0.116.tar.xz
/cockpit-0.117.tar.xz
/cockpit-118.tar.xz
/cockpit-119.tar.xz

View File

@ -1,4 +1,4 @@
%define tag 118
%define tag 119
%define rev 1
#
# This file is maintained at the following location:
@ -169,7 +169,7 @@ make -j4 check
%install
make install DESTDIR=%{buildroot}
%if %{defined gitcommit}
%if %{defined gitcommit} || 0%{?rhel}
make install-test-assets DESTDIR=%{buildroot}
%else
rm -rf %{buildroot}/%{_datadir}/%{name}/playground
@ -221,6 +221,9 @@ find %{buildroot}%{_datadir}/%{name}/networkmanager -type f >> networkmanager.li
echo '%dir %{_datadir}/%{name}/ostree' > ostree.list
find %{buildroot}%{_datadir}/%{name}/ostree -type f >> ostree.list
echo '%dir %{_datadir}/%{name}/machines' > machines.list
find %{buildroot}%{_datadir}/%{name}/machines -type f >> machines.list
# on CentOS systems we don't have the required setroubleshoot-server packages
%if 0%{?centos}
rm -rf %{buildroot}%{_datadir}/%{name}/selinux
@ -414,6 +417,18 @@ The Cockpit components for managing software updates for ostree based systems.
%files ostree -f ostree.list
%package machines
Summary: Cockpit user interface for rpm-machines
Requires: %{name}-bridge >= %{stable_api}
Requires: %{name}-shell >= %{stable_api}
Requires: libvirt
Requires: libvirt-client
%description machines
The Cockpit components for managing virtual machines.
%files machines -f machines.list
# Conditionally built packages below
%if 0%{?rhel} == 0
@ -516,7 +531,8 @@ cluster. Installed on the Kubernetes master. This package is not yet complete.
%endif
%if %{defined gitcommit}
# we only build test assets on rhel or if we're building from a specific commit
%if %{defined gitcommit} || 0%{?rhel}
%package test-assets
Summary: Additional stuff for testing Cockpit
@ -535,6 +551,15 @@ pulls in some necessary packages via dependencies.
%endif
%changelog
* Thu Sep 29 2016 petervo <petervo@redhat.com> - 119-1
- Adds basic VM Management and Monitoring
- MDRaid job improvements
- Show unmanaged network devices
- Better errors when formating storage devices
- Updated VNC example
- Port subscriptions package to react
- Allow branding.css to overide shell css
* Wed Sep 07 2016 Stef Walter <stefw@redhat.com> - 118-1
- Support PAM conversations on the Login screen
- Users can create systemd timer jobs

View File

@ -1 +1 @@
867970f90a176670b914ec30edbe6771 cockpit-118.tar.xz
dfbb65d11cc8aa1309a61923385b6788 cockpit-119.tar.xz