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:
parent
2b397044ab
commit
049c2bf13d
1
.gitignore
vendored
1
.gitignore
vendored
@ -89,3 +89,4 @@
|
||||
/cockpit-0.116.tar.xz
|
||||
/cockpit-0.117.tar.xz
|
||||
/cockpit-118.tar.xz
|
||||
/cockpit-119.tar.xz
|
||||
|
31
cockpit.spec
31
cockpit.spec
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user