Blame SPECS/cockpit.spec

f573a2
# Globals that may be defined elsewhere
45c0c4
#  * Version 122
45c0c4
#  * wip 1
f573a2
#
b6b72a
b996cc
# earliest base that the subpackages work on; the instances of this get computed/updated
b996cc
# by tools/gen-spec-dependencies during "make dist", but keep a hardcoded fallback
33cfa9
%define required_base 122
c6174b
8d9fa2
%if 0%{?centos}
8d9fa2
%define rhel 0
8d9fa2
%endif
91e29d
91e29d
# for testing this already gets set in fedora.install, as we want the target
91e29d
# VERSION_ID, not the mock chroot's one
91e29d
%if "%{!?os_version_id:1}"
91e29d
%define os_version_id %(. /etc/os-release; echo $VERSION_ID)
91e29d
%endif
1cb44c
b6b72a
%define _hardened_build 1
b6b72a
a7faa1
# define to build the dashboard
a7faa1
%define build_dashboard 1
a7faa1
c6174b
%define libssh_version 0.7.1
f89aa4
%if 0%{?fedora} > 0 && 0%{?fedora} < 22
f89aa4
%define libssh_version 0.6.0
f89aa4
%endif
c6174b
b6b72a
Name:           cockpit
b6b72a
Summary:        A user interface for Linux servers
b6b72a
b6b72a
License:        LGPLv2+
b6b72a
URL:            http://cockpit-project.org/
b6b72a
8d9fa2
Version:        160
45c0c4
%if %{defined wip}
45c0c4
Release:        1.%{wip}%{?dist}
b6b72a
Source0:        cockpit-%{version}.tar.gz
b6b72a
%else
91e29d
Release:        1%{?dist}
f573a2
Source0:        https://github.com/cockpit-project/cockpit/releases/download/%{version}/cockpit-%{version}.tar.xz
b6b72a
%endif
b6b72a
b6b72a
BuildRequires: pkgconfig(gio-unix-2.0)
b6b72a
BuildRequires: pkgconfig(json-glib-1.0)
b6b72a
BuildRequires: pkgconfig(polkit-agent-1) >= 0.105
b6b72a
BuildRequires: pam-devel
b6b72a
b6b72a
BuildRequires: autoconf automake
91e29d
BuildRequires: /usr/bin/python2
b6b72a
BuildRequires: intltool
a7faa1
%if %{defined build_dashboard}
c6174b
BuildRequires: libssh-devel >= %{libssh_version}
a7faa1
%endif
b6b72a
BuildRequires: openssl-devel
b6b72a
BuildRequires: zlib-devel
b6b72a
BuildRequires: krb5-devel
b6b72a
BuildRequires: libxslt-devel
b6b72a
BuildRequires: docbook-style-xsl
b6b72a
BuildRequires: glib-networking
b6b72a
BuildRequires: sed
33cfa9
BuildRequires: git
b6b72a
b6b72a
BuildRequires: glib2-devel >= 2.37.4
c6174b
BuildRequires: systemd-devel
b6b72a
BuildRequires: pcp-libs-devel
f573a2
BuildRequires: krb5-server
45c0c4
BuildRequires: gdb
b6b72a
b6b72a
# For documentation
b6b72a
BuildRequires: xmlto
b6b72a
5e2f64
# This is the "cockpit" metapackage. It should only
5e2f64
# Require, Suggest or Recommend other cockpit-xxx subpackages
5e2f64
b6b72a
Requires: %{name}-bridge = %{version}-%{release}
b6b72a
Requires: %{name}-ws = %{version}-%{release}
a7faa1
Requires: %{name}-system = %{version}-%{release}
f573a2
f573a2
# Optional components (for f24 we use soft deps)
f573a2
%if 0%{?fedora} >= 24 || 0%{?rhel} >= 8
91e29d
Recommends: %{name}-dashboard = %{version}-%{release}
f573a2
Recommends: %{name}-networkmanager = %{version}-%{release}
f573a2
Recommends: %{name}-storaged = %{version}-%{release}
91e29d
Recommends: sscg >= 2.0.4
b4599d
%ifarch x86_64 %{arm} aarch64 ppc64le i686 s390x
f573a2
Recommends: %{name}-docker = %{version}-%{release}
f573a2
%endif
f573a2
Suggests: %{name}-pcp = %{version}-%{release}
f573a2
Suggests: %{name}-kubernetes = %{version}-%{release}
63454a
Suggests: %{name}-selinux = %{version}-%{release}
b4599d
Suggests: %{name}-packagekit = %{version}-%{release}
b4599d
b6b72a
%endif
b6b72a
b6b72a
%description
b6b72a
Cockpit runs in a browser and can manage your network of GNU/Linux
b6b72a
machines.
b6b72a
a7faa1
%files
a7faa1
%{_docdir}/%{name}/AUTHORS
a7faa1
%{_docdir}/%{name}/COPYING
a7faa1
%{_docdir}/%{name}/README.md
a7faa1
%dir %{_datadir}/%{name}
0b7b43
%{_datadir}/metainfo/cockpit.appdata.xml
a7faa1
%{_datadir}/applications/cockpit.desktop
a7faa1
%{_datadir}/pixmaps/cockpit.png
a7faa1
%doc %{_mandir}/man1/cockpit.1.gz
b6b72a
b6b72a
%prep
b6b72a
%setup -q
5e2f64
b996cc
# Apply patches using git in order to support binary patches. Note that
b996cc
# we also reset mtimes since patches should be "complete" and include both
b996cc
# generated and source file changes
b996cc
# Keep this in sync with tools/debian/rules.
b996cc
if [ -n "%{patches}" ]; then
91e29d
    git init
91e29d
    git config user.email "unused@example.com" && git config user.name "Unused"
91e29d
    git config core.autocrlf false && git config core.safecrlf false && git config gc.auto 0
91e29d
    git add -f . && git commit -a -q -m "Base" && git tag -a initial --message="initial"
91e29d
    git am --whitespace=nowarn %{patches}
91e29d
    touch -r $(git diff --name-only initial..HEAD) .git
91e29d
    rm -rf .git
b996cc
fi
33cfa9
b6b72a
%build
f573a2
exec 2>&1
91e29d
%configure --disable-silent-rules --with-cockpit-user=cockpit-ws --with-selinux-config-type=etc_t %{?rhel:--without-storaged-iscsi-sessions} %{!?build_dashboard:--disable-ssh}
f573a2
make -j4 %{?extra_flags} all
b6b72a
b6b72a
%check
f573a2
exec 2>&1
f573a2
make -j4 check
b6b72a
b6b72a
%install
c6174b
make install DESTDIR=%{buildroot}
b996cc
make install-tests DESTDIR=%{buildroot}
b6b72a
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d
f573a2
install -p -m 644 tools/cockpit.pam $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/cockpit
b6b72a
rm -f %{buildroot}/%{_libdir}/cockpit/*.so
b6b72a
install -p -m 644 AUTHORS COPYING README.md %{buildroot}%{_docdir}/%{name}/
f573a2
f573a2
# On RHEL we don't yet show options for changing language
f573a2
%if 0%{?rhel}
a22909
echo '{ "linguas": null }' > %{buildroot}%{_datadir}/%{name}/shell/override.json
b6b72a
%endif
b6b72a
b6b72a
# Build the package lists for resource packages
f2124f
echo '%dir %{_datadir}/%{name}/base1' > base.list
f2124f
find %{buildroot}%{_datadir}/%{name}/base1 -type f >> base.list
b996cc
echo '%{_sysconfdir}/cockpit/machines.d' >> base.list
b6b72a
a7faa1
%if %{defined build_dashboard}
a7faa1
echo '%dir %{_datadir}/%{name}/dashboard' >> dashboard.list
a7faa1
find %{buildroot}%{_datadir}/%{name}/dashboard -type f >> dashboard.list
b996cc
find %{buildroot}%{_datadir}/%{name}/ssh -type f >> dashboard.list
a7faa1
%else
a7faa1
rm -rf %{buildroot}/%{_datadir}/%{name}/dashboard
b996cc
rm -rf %{buildroot}/%{_datadir}/%{name}/ssh
a7faa1
touch dashboard.list
a7faa1
%endif
a7faa1
b996cc
echo '%dir %{_datadir}/%{name}/pcp' >> pcp.list
b996cc
find %{buildroot}%{_datadir}/%{name}/pcp -type f >> pcp.list
b996cc
a7faa1
echo '%dir %{_datadir}/%{name}/realmd' >> system.list
a7faa1
find %{buildroot}%{_datadir}/%{name}/realmd -type f >> system.list
b6b72a
a7faa1
echo '%dir %{_datadir}/%{name}/tuned' >> system.list
a7faa1
find %{buildroot}%{_datadir}/%{name}/tuned -type f >> system.list
f573a2
a7faa1
echo '%dir %{_datadir}/%{name}/shell' >> system.list
a7faa1
find %{buildroot}%{_datadir}/%{name}/shell -type f >> system.list
b6b72a
a7faa1
echo '%dir %{_datadir}/%{name}/systemd' >> system.list
a7faa1
find %{buildroot}%{_datadir}/%{name}/systemd -type f >> system.list
b6b72a
a7faa1
echo '%dir %{_datadir}/%{name}/users' >> system.list
a7faa1
find %{buildroot}%{_datadir}/%{name}/users -type f >> system.list
b6b72a
a7faa1
echo '%dir %{_datadir}/%{name}/kdump' >> kdump.list
a7faa1
find %{buildroot}%{_datadir}/%{name}/kdump -type f >> kdump.list
f89aa4
f573a2
echo '%dir %{_datadir}/%{name}/sosreport' > sosreport.list
f573a2
find %{buildroot}%{_datadir}/%{name}/sosreport -type f >> sosreport.list
f573a2
b6b72a
echo '%dir %{_datadir}/%{name}/subscriptions' > subscriptions.list
b6b72a
find %{buildroot}%{_datadir}/%{name}/subscriptions -type f >> subscriptions.list
b6b72a
5e2f64
echo '%dir %{_datadir}/%{name}/storaged' > storaged.list
5e2f64
find %{buildroot}%{_datadir}/%{name}/storaged -type f >> storaged.list
c6174b
5e2f64
echo '%dir %{_datadir}/%{name}/networkmanager' > networkmanager.list
5e2f64
find %{buildroot}%{_datadir}/%{name}/networkmanager -type f >> networkmanager.list
f89aa4
f573a2
echo '%dir %{_datadir}/%{name}/ostree' > ostree.list
f573a2
find %{buildroot}%{_datadir}/%{name}/ostree -type f >> ostree.list
f573a2
b4599d
echo '%dir %{_datadir}/%{name}/packagekit' >> packagekit.list
b4599d
find %{buildroot}%{_datadir}/%{name}/packagekit -type f >> packagekit.list
b4599d
33cfa9
echo '%dir %{_datadir}/%{name}/machines' > machines.list
33cfa9
find %{buildroot}%{_datadir}/%{name}/machines -type f >> machines.list
33cfa9
5e2f64
# on CentOS systems we don't have the required setroubleshoot-server packages
8d9fa2
%if 0%{?centos}
8d9fa2
rm -rf %{buildroot}%{_datadir}/%{name}/selinux
8d9fa2
%else
63454a
echo '%dir %{_datadir}/%{name}/selinux' > selinux.list
63454a
find %{buildroot}%{_datadir}/%{name}/selinux -type f >> selinux.list
8d9fa2
%endif
63454a
1cb44c
%ifarch x86_64 %{arm} aarch64 ppc64le i686 s390x
b6b72a
echo '%dir %{_datadir}/%{name}/docker' > docker.list
b6b72a
find %{buildroot}%{_datadir}/%{name}/docker -type f >> docker.list
b6b72a
%else
b6b72a
rm -rf %{buildroot}/%{_datadir}/%{name}/docker
b6b72a
touch docker.list
b6b72a
%endif
b6b72a
b996cc
%ifarch aarch64 x86_64 ppc64le s390x
45c0c4
%if %{defined wip}
06bfda
%else
63454a
rm %{buildroot}/%{_datadir}/%{name}/kubernetes/override.json
06bfda
%endif
63454a
echo '%dir %{_datadir}/%{name}/kubernetes' > kubernetes.list
63454a
find %{buildroot}%{_datadir}/%{name}/kubernetes -type f >> kubernetes.list
b6b72a
%else
b6b72a
rm -rf %{buildroot}/%{_datadir}/%{name}/kubernetes
b996cc
rm -f %{buildroot}/%{_libexecdir}/cockpit-kube-auth
b996cc
rm -f %{buildroot}/%{_libexecdir}/cockpit-kube-launch
b996cc
rm %{buildroot}/%{_libexecdir}/cockpit-stub
b6b72a
touch kubernetes.list
b6b72a
%endif
b6b72a
8d9fa2
# On RHEL and CentOS, apps/ovirt are not currently built
93b938
rm -rf %{buildroot}/%{_datadir}/%{name}/apps %{buildroot}/%{_datadir}/%{name}/ovirt
93b938
b6b72a
sed -i "s|%{buildroot}||" *.list
b6b72a
c6174b
# Build the package lists for debug package, and move debug files to installed locations
5e2f64
find %{buildroot}/usr/src/debug%{_datadir}/%{name} -type f -o -type l > debug.partial
5e2f64
sed -i "s|%{buildroot}/usr/src/debug||" debug.partial
5e2f64
sed -n 's/\.map\(\.gz\)\?$/\0/p' *.list >> debug.partial
5e2f64
sed -i '/\.map\(\.gz\)\?$/d' *.list
c6174b
tar -C %{buildroot}/usr/src/debug -cf - . | tar -C %{buildroot} -xf -
c6174b
rm -rf %{buildroot}/usr/src/debug
c6174b
a7faa1
# On RHEL kdump, subscriptions, networkmanager, selinux, and sosreport are part of the system package
c6174b
%if 0%{?rhel}
a7faa1
cat kdump.list subscriptions.list sosreport.list networkmanager.list selinux.list >> system.list
8d9fa2
rm %{buildroot}/usr/share/metainfo/org.cockpit-project.cockpit-sosreport.metainfo.xml
8d9fa2
rm %{buildroot}/usr/share/pixmaps/cockpit-sosreport.png
f89aa4
%endif
f89aa4
5e2f64
%find_lang %{name}
5e2f64
06bfda
# dwz has trouble with the go binaries
06bfda
# https://fedoraproject.org/wiki/PackagingDrafts/Go
06bfda
%global _dwz_low_mem_die_limit 0
06bfda
f89aa4
%define find_debug_info %{_rpmconfigdir}/find-debuginfo.sh %{?_missing_build_ids_terminate_build:--strict-build-id} %{?_include_minidebuginfo:-m} %{?_find_debuginfo_dwz_opts} %{?_find_debuginfo_opts} "%{_builddir}/%{?buildsubdir}"
b6b72a
b6b72a
# Redefine how debug info is built to slip in our extra debug files
b6b72a
%define __debug_install_post   \
f89aa4
   %{find_debug_info} \
5e2f64
   cat debug.partial >> %{_builddir}/%{?buildsubdir}/debugfiles.list \
b6b72a
%{nil}
b6b72a
a7faa1
# -------------------------------------------------------------------------------
a7faa1
# Sub-packages
a7faa1
91e29d
%define __lib lib
91e29d
a7faa1
%package bridge
a7faa1
Summary: Cockpit bridge server-side component
a7faa1
Requires: glib-networking
a7faa1
a7faa1
%description bridge
a7faa1
The Cockpit bridge component installed server side and runs commands on the
a7faa1
system on behalf of the web based user interface.
b6b72a
f2124f
%files bridge -f base.list
45c0c4
%{_datadir}/%{name}/base1/bundle.min.js.gz
b6b72a
%doc %{_mandir}/man1/cockpit-bridge.1.gz
b6b72a
%{_bindir}/cockpit-bridge
b996cc
%{_libexecdir}/cockpit-askpass
b6b72a
a7faa1
%package doc
a7faa1
Summary: Cockpit deployment and developer guide
a7faa1
a7faa1
%description doc
a7faa1
The Cockpit Deployment and Developer Guide shows sysadmins how to
a7faa1
deploy Cockpit on their machines as well as helps developers who want to
a7faa1
embed or extend Cockpit.
a7faa1
b6b72a
%files doc
b6b72a
%exclude %{_docdir}/%{name}/AUTHORS
b6b72a
%exclude %{_docdir}/%{name}/COPYING
b6b72a
%exclude %{_docdir}/%{name}/README.md
b6b72a
%{_docdir}/%{name}
b6b72a
a7faa1
%package machines
a7faa1
Summary: Cockpit user interface for virtual machines
a7faa1
Requires: %{name}-bridge >= %{required_base}
a7faa1
Requires: %{name}-system >= %{required_base}
a7faa1
Requires: libvirt
a7faa1
Requires: libvirt-client
a7faa1
a7faa1
%description machines
a7faa1
The Cockpit components for managing virtual machines.
a7faa1
a7faa1
%files machines -f machines.list
a7faa1
a7faa1
%package ostree
a7faa1
Summary: Cockpit user interface for rpm-ostree
a7faa1
# Requires: Uses new translations functionality
b996cc
Requires: %{name}-bridge >= %{required_base}
b996cc
Requires: %{name}-system >= %{required_base}
a7faa1
%if 0%{?fedora} > 0 && 0%{?fedora} < 24
a7faa1
Requires: rpm-ostree >= 2015.10-1
a7faa1
%else
a7faa1
Requires: /usr/libexec/rpm-ostreed
a7faa1
%endif
a7faa1
a7faa1
%description ostree
a7faa1
The Cockpit components for managing software updates for ostree based systems.
a7faa1
a7faa1
%files ostree -f ostree.list
a7faa1
a7faa1
%package pcp
a7faa1
Summary: Cockpit PCP integration
b996cc
Requires: %{name}-bridge >= %{required_base}
a7faa1
Requires: pcp
a7faa1
a7faa1
%description pcp
a7faa1
Cockpit support for reading PCP metrics and loading PCP archives.
a7faa1
b996cc
%files pcp -f pcp.list
b6b72a
%{_libexecdir}/cockpit-pcp
c6174b
%{_localstatedir}/lib/pcp/config/pmlogconf/tools/cockpit
b6b72a
b6b72a
%post pcp
ffd391
# HACK - https://bugzilla.redhat.com/show_bug.cgi?id=1185764
ffd391
# We can't use "systemctl reload-or-try-restart" since systemctl might
ffd391
# be out of sync with reality.
45c0c4
/usr/share/pcp/lib/pmlogger condrestart
b6b72a
a7faa1
%if %{defined build_dashboard}
a7faa1
%package dashboard
91e29d
Summary: Cockpit remote servers and dashboard
a7faa1
Requires: libssh >= %{libssh_version}
91e29d
Provides: %{name}-ssh = %{version}-%{release}
b996cc
# nothing depends on the dashboard, but we can't use it with older versions of the bridge
b996cc
Conflicts: %{name}-bridge < 135
b996cc
Conflicts: %{name}-ws < 135
b6b72a
a7faa1
%description dashboard
91e29d
Cockpit support for connecting to remote servers (through ssh),
91e29d
bastion hosts, and a basic dashboard.
b6b72a
a7faa1
%files dashboard -f dashboard.list
a7faa1
%{_libexecdir}/cockpit-ssh
a7faa1
a7faa1
%post dashboard
33cfa9
# HACK: Until policy changes make it downstream
27a471
echo "Applying workaround for broken SELinux policy: https://bugzilla.redhat.com/show_bug.cgi?id=1381331" >&2
27a471
if type semanage >/dev/null 2>&1; then
27a471
    semanage fcontext -a %{_libexecdir}/cockpit-ssh -t cockpit_ws_exec_t || true
27a471
    restorecon %{_libexecdir}/cockpit-ssh || true
27a471
else
27a471
    chcon -t cockpit_ws_exec_t %{_libexecdir}/cockpit-ssh || true
27a471
fi
5e2f64
%endif
f89aa4
f89aa4
%package storaged
f89aa4
Summary: Cockpit user interface for storage, using Storaged
33cfa9
Requires: %{name}-shell >= %{required_base}
f89aa4
Requires: storaged >= 2.1.1
f2124f
%if 0%{?fedora} >= 24 || 0%{?rhel} >= 8
f2124f
Recommends: storaged-lvm2 >= 2.1.1
f2124f
Recommends: storaged-iscsi >= 2.1.1
f2124f
Recommends: device-mapper-multipath
f2124f
%else
f573a2
Requires: storaged-lvm2 >= 2.1.1
f2124f
Requires: storaged-iscsi >= 2.1.1
f573a2
Requires: device-mapper-multipath
f2124f
%endif
93b938
%if 0%{?fedora}
93b938
Requires: python3
93b938
Requires: python3-dbus
93b938
%else
93b938
Requires: python
93b938
Requires: python-dbus
93b938
%endif
f89aa4
BuildArch: noarch
f89aa4
f89aa4
%description storaged
f89aa4
The Cockpit component for managing storage.  This package uses Storaged.
f89aa4
f89aa4
%files storaged -f storaged.list
f89aa4
a7faa1
%package system
a7faa1
Summary: Cockpit admin interface package for configuring and troubleshooting a system
a7faa1
BuildArch: noarch
b996cc
Requires: %{name}-bridge >= %{version}-%{release}
a7faa1
Requires: shadow-utils
a7faa1
Requires: grep
a7faa1
Requires: libpwquality
a7faa1
Requires: /usr/bin/date
a7faa1
Provides: %{name}-realmd = %{version}-%{release}
a7faa1
Provides: %{name}-shell = %{version}-%{release}
a7faa1
Obsoletes: %{name}-shell < 127
a7faa1
Provides: %{name}-systemd = %{version}-%{release}
a7faa1
Provides: %{name}-tuned = %{version}-%{release}
a7faa1
Provides: %{name}-users = %{version}-%{release}
a7faa1
%if 0%{?rhel}
a7faa1
Provides: %{name}-networkmanager = %{version}-%{release}
a7faa1
Requires: NetworkManager
a7faa1
Provides: %{name}-kdump = %{version}-%{release}
a7faa1
Requires: kexec-tools
a7faa1
# Optional components (only when soft deps are supported)
a22909
%if 0%{?rhel} >= 8
a7faa1
Recommends: NetworkManager-team
a22909
Recommends: setroubleshoot-server >= 3.3.3
a7faa1
%endif
a7faa1
Provides: %{name}-selinux = %{version}-%{release}
a7faa1
Provides: %{name}-sosreport = %{version}-%{release}
a7faa1
Provides: %{name}-subscriptions = %{version}-%{release}
a7faa1
Requires: subscription-manager >= 1.13
f573a2
%endif
f573a2
a7faa1
%description system
a7faa1
This package contains the Cockpit shell and system configuration interfaces.
f573a2
a7faa1
%files system -f system.list
f573a2
b996cc
%package tests
b996cc
Summary: Tests for Cockpit
b4599d
Requires: %{name}-bridge >= 138
b4599d
Requires: %{name}-system >= 138
b996cc
Requires: openssh-clients
91e29d
Provides: %{name}-test-assets = %{version}-%{release}
b996cc
Obsoletes: %{name}-test-assets < 132
b996cc
b996cc
%description tests
b996cc
This package contains tests and files used while testing Cockpit.
b996cc
These files are not required for running Cockpit.
b996cc
b996cc
%files tests
b4599d
%config(noreplace) %{_sysconfdir}/cockpit/cockpit.conf
b996cc
%{_datadir}/%{name}/playground
b996cc
%{_prefix}/lib/cockpit-test-assets
b996cc
a7faa1
%package ws
a7faa1
Summary: Cockpit Web Service
a7faa1
Requires: glib-networking
a7faa1
Requires: openssl
a7faa1
Requires: glib2 >= 2.37.4
a7faa1
Requires(post): systemd
a7faa1
Requires(preun): systemd
a7faa1
Requires(postun): systemd
33cfa9
a7faa1
%description ws
a7faa1
The Cockpit Web Service listens on the network, and authenticates users.
33cfa9
a7faa1
%files ws -f %{name}.lang
a7faa1
%doc %{_mandir}/man5/cockpit.conf.5.gz
a7faa1
%doc %{_mandir}/man8/cockpit-ws.8.gz
a7faa1
%doc %{_mandir}/man8/remotectl.8.gz
a7faa1
%doc %{_mandir}/man8/pam_ssh_add.8.gz
b996cc
%config(noreplace) %{_sysconfdir}/%{name}/ws-certs.d
a7faa1
%config(noreplace) %{_sysconfdir}/pam.d/cockpit
91e29d
%{_datadir}/%{name}/issue/active.issue
91e29d
%{_datadir}/%{name}/issue/inactive.issue
a7faa1
%{_unitdir}/cockpit.service
a7faa1
%{_unitdir}/cockpit.socket
91e29d
%{_prefix}/%{__lib}/firewalld/services/cockpit.xml
91e29d
%{_prefix}/%{__lib}/tmpfiles.d/cockpit-tempfiles.conf
a7faa1
%{_sbindir}/remotectl
a7faa1
%{_libdir}/security/pam_ssh_add.so
a7faa1
%{_libexecdir}/cockpit-ws
a7faa1
%attr(4750, root, cockpit-ws) %{_libexecdir}/cockpit-session
a7faa1
%attr(775, -, wheel) %{_localstatedir}/lib/%{name}
a7faa1
%{_datadir}/%{name}/static
a7faa1
%{_datadir}/%{name}/branding
33cfa9
a7faa1
%pre ws
a7faa1
getent group cockpit-ws >/dev/null || groupadd -r cockpit-ws
a7faa1
getent passwd cockpit-ws >/dev/null || useradd -r -g cockpit-ws -d / -s /sbin/nologin -c "User for cockpit-ws" cockpit-ws
a7faa1
a7faa1
%post ws
a7faa1
%systemd_post cockpit.socket
a7faa1
# firewalld only partially picks up changes to its services files without this
a7faa1
test -f %{_bindir}/firewall-cmd && firewall-cmd --reload --quiet || true
a7faa1
a7faa1
%preun ws
a7faa1
%systemd_preun cockpit.socket
a7faa1
a7faa1
%postun ws
a7faa1
%systemd_postun_with_restart cockpit.socket
a7faa1
%systemd_postun_with_restart cockpit.service
a7faa1
a7faa1
# -------------------------------------------------------------------------------
a7faa1
# Conditional Sub-packages
b6b72a
b6b72a
%if 0%{?rhel} == 0
b6b72a
a7faa1
%package kdump
a7faa1
Summary: Cockpit user interface for kernel crash dumping
a7faa1
Requires: %{name}-bridge >= %{required_base}
a7faa1
Requires: %{name}-shell >= %{required_base}
a7faa1
Requires: kexec-tools
a7faa1
BuildArch: noarch
a7faa1
a7faa1
%description kdump
a7faa1
The Cockpit component for configuring kernel crash dumping.
a7faa1
a7faa1
%files kdump -f kdump.list
a7faa1
f573a2
%package sosreport
f573a2
Summary: Cockpit user interface for diagnostic reports
33cfa9
Requires: %{name}-bridge >= %{required_base}
33cfa9
Requires: %{name}-shell >= %{required_base}
f573a2
Requires: sos
f573a2
BuildArch: noarch
f573a2
f573a2
%description sosreport
f573a2
The Cockpit component for creating diagnostic reports with the
f573a2
sosreport tool.
f573a2
f573a2
%files sosreport -f sosreport.list
8d9fa2
/usr/share/metainfo/org.cockpit-project.cockpit-sosreport.metainfo.xml
8d9fa2
/usr/share/pixmaps/cockpit-sosreport.png
f573a2
b6b72a
%package subscriptions
b6b72a
Summary: Cockpit subscription user interface package
33cfa9
Requires: %{name}-bridge >= %{required_base}
33cfa9
Requires: %{name}-shell >= %{required_base}
b6b72a
Requires: subscription-manager >= 1.13
b6b72a
BuildArch: noarch
b6b72a
b6b72a
%description subscriptions
b6b72a
This package contains the Cockpit user interface integration with local
b6b72a
subscription management.
b6b72a
b6b72a
%files subscriptions -f subscriptions.list
b6b72a
f2124f
%package networkmanager
f2124f
Summary: Cockpit user interface for networking, using NetworkManager
33cfa9
Requires: %{name}-bridge >= %{required_base}
33cfa9
Requires: %{name}-shell >= %{required_base}
f2124f
Requires: NetworkManager
5e2f64
# Optional components (only when soft deps are supported)
5e2f64
%if 0%{?fedora} >= 24 || 0%{?rhel} >= 8
5e2f64
Recommends: NetworkManager-team
5e2f64
%endif
f2124f
BuildArch: noarch
f2124f
f2124f
%description networkmanager
f2124f
The Cockpit component for managing networking.  This package uses NetworkManager.
f2124f
f2124f
%files networkmanager -f networkmanager.list
f2124f
f2124f
%endif
f2124f
8d9fa2
%if 0%{?rhel}%{?centos} == 0
f2124f
63454a
%package selinux
63454a
Summary: Cockpit SELinux package
33cfa9
Requires: %{name}-bridge >= %{required_base}
33cfa9
Requires: %{name}-shell >= %{required_base}
a22909
%if 0%{?fedora} >= 24 || 0%{?rhel} >= 8
a22909
Recommends: setroubleshoot-server >= 3.3.3
a22909
%endif
63454a
BuildArch: noarch
63454a
63454a
%description selinux
63454a
This package contains the Cockpit user interface integration with the
63454a
utility setroubleshoot to diagnose and resolve SELinux issues.
63454a
63454a
%files selinux -f selinux.list
63454a
8d9fa2
%endif
f573a2
1cb44c
%ifarch x86_64 %{arm} aarch64 ppc64le s390x
b6b72a
b6b72a
%package docker
b6b72a
Summary: Cockpit user interface for Docker containers
33cfa9
Requires: %{name}-bridge >= %{required_base}
33cfa9
Requires: %{name}-shell >= %{required_base}
1cb44c
Requires: /usr/bin/docker
5e2f64
Requires: python
b6b72a
b6b72a
%description docker
b6b72a
The Cockpit components for interacting with Docker and user interface.
b6b72a
This package is not yet complete.
b6b72a
b6b72a
%files docker -f docker.list
b6b72a
b6b72a
%endif
b6b72a
1cb44c
%ifarch aarch64 x86_64 ppc64le i686 s390x
b6b72a
b6b72a
%package kubernetes
b6b72a
Summary: Cockpit user interface for Kubernetes cluster
c6174b
Requires: /usr/bin/kubectl
45c0c4
# Requires: Needs newer localization support
b996cc
Requires: %{name}-bridge >= %{required_base}
b996cc
Requires: %{name}-shell >= %{required_base}
06bfda
BuildRequires: golang-bin
06bfda
BuildRequires: golang-src
b996cc
Provides: cockpit-stub = %{version}-%{release}
b6b72a
b6b72a
%description kubernetes
b6b72a
The Cockpit components for visualizing and configuring a Kubernetes
b6b72a
cluster. Installed on the Kubernetes master. This package is not yet complete.
b6b72a
b6b72a
%files kubernetes -f kubernetes.list
06bfda
%{_libexecdir}/cockpit-kube-auth
06bfda
%{_libexecdir}/cockpit-kube-launch
b996cc
%{_libexecdir}/cockpit-stub
b6b72a
%endif
b6b72a
b4599d
%package packagekit
b4599d
Summary: Cockpit user interface for package updates
b4599d
Requires: %{name}-bridge >= %{required_base}
b4599d
Requires: PackageKit
b4599d
b4599d
%description packagekit
b4599d
The Cockpit component for installing package updates, via PackageKit.
b4599d
b4599d
%files packagekit -f packagekit.list
b4599d
b4599d
b6b72a
%changelog
8d9fa2
* Mon Jan 29 2018 Martin Pitt <mpitt@redhat.com> 160-1
8d9fa2
 - Add check boxes for common NFS mount options
8d9fa2
 - Redesign package list on Software Updates page and show RHEL Errata
8d9fa2
 - Clarify Software Update status if only security updates are available
8d9fa2
 - Add serial console to virtual Machines page and redesign the Consoles tab
8d9fa2
 - Show more error message details for failures on virtual Machines page
9b3937
91e29d
* Fri Dec 08 2017 Martin Pitt <mpitt@redhat.com> 157-1
91e29d
 - Correctly compute "used" space for NFS mounts
5ed9a2
93b938
* Tue Nov 07 2017 Martin Pitt <mpitt@redhat.com> 155-1
93b938
 - Add NFS client support to the Storage page
93b938
 - Add checkboxes for common Storage encryption and mount options
d6d599
0b7b43
* Thu Sep 21 2017 Martin Pitt <mpitt@redhat.com> 151-1
0b7b43
- Fix tooltip on "Edit Server" button on Dashboard rhbz#1449887
0b7b43
b4599d
* Fri Aug 04 2017 Martin Pitt <mpitt@redhat.com> 148-1
b4599d
- Update Cluster/Registry Image tags design to current Openshift Web Console
b4599d
- Delete Kubernetes session tokens on logout
b4599d
- Detect unregistered RHEL systems on Software Updates page
b4599d
b4599d
* Thu Jul 27 2017 Dominik Perpeet <dperpeet@redhat.com> 147-1
b4599d
- Update to 147 release
b4599d
- Add "Software Updates" page for packages
b4599d
- Fix Kubernetes authentication when Kubernetes configured for RBAC
b4599d
- Add configuration of account locking and password expiry to Accounts page
b4599d
- Consistently ignore loopback traffic on all network load graphs
b4599d
- Add ABRT integration to the System page
b4599d
- Resize the terminal dynamically to use all available space
b4599d
e087a3
* Thu Jun 29 2017 Dominik Perpeet <dperpeet@redhat.com> 141-4
e087a3
- Bump for rebuild on more architectures
38a9ad
27a471
* Thu Jun 29 2017 Dominik Perpeet <dperpeet@redhat.com> 141-3
27a471
- Fix dashboard dependency rhbz#1466423
27a471
27a471
* Mon Jun 05 2017 Dominik Perpeet <dperpeet@redhat.com> 141-2
27a471
- Build on more architectures
27a471
1cb44c
* Mon Jun 05 2017 Dominik Perpeet <dperpeet@redhat.com> 141-1
1cb44c
- Update to 141 release
1cb44c
- Allow users to change Docker container environment variables
1cb44c
- Allow auth commands to store credentials for future challenges
1cb44c
- Attempt to tear down used partitions when formatting disks
1cb44c
- Show the correct known_hosts path on missing/mismatching host keys
1cb44c
- Set HTML content type when serving login page, for better reverse proxy operation
1cb44c
1cb44c
* Wed May 24 2017 Dominik Perpeet <dperpeet@redhat.com> 138-8
1cb44c
- Rebuild for new dependencies
1cb44c
1cb44c
* Wed May 17 2017 Dominik Perpeet <dperpeet@redhat.com> 138-7
1cb44c
- Build cockpit-docker for s390x
ffb745
a22909
* Wed May 17 2017 Dominik Perpeet <dperpeet@redhat.com> 138-6
a22909
- Fix ssh dependency
a22909
a22909
* Fri May 12 2017 Dominik Perpeet <dperpeet@redhat.com> 138-5
a22909
- Fix forwarding binary data in the shell
a22909
- Fix dashboard dependency
a22909
a22909
* Fri May 05 2017 Dominik Perpeet <dperpeet@redhat.com> 138-4
a22909
- Bump and rebuild on more architectures
a22909
a22909
* Wed May 03 2017 Dominik Perpeet <dperpeet@redhat.com> 138-3
a22909
- Fix issues with connections between multiple hosts
a22909
- Fix format string type mismatch on some architectures
a22909
a22909
* Tue May 02 2017 Dominik Perpeet <dperpeet@redhat.com> 138-2
a22909
- Bump and rebuild with dashboard
a22909
a22909
* Mon Apr 10 2017 Dominik Perpeet <dperpeet@redhat.com> 138-1
a22909
- Update to 138 release
a22909
- Simplify protocol that cockpit talks to session authentication processes
a22909
a22909
* Fri Mar 31 2017 Dominik Perpeet <dperpeet@redhat.com> 137-1
a22909
- Update to 137 release
a22909
- Cockpit's web server understands and properly responds to HTTP HEAD requests
a22909
a22909
* Mon Mar 27 2017 Dominik Perpeet <dperpeet@redhat.com> 136-1
a22909
- Update to 136 release
a22909
- Reorder menu items in a more logical way
a22909
b996cc
* Thu Mar 23 2017 Dominik Perpeet <dperpeet@redhat.com> 135-4
b996cc
- The cockpit package doesn't require the dashboard anymore
b996cc
- The dashboard package conflicts with older bridge and ws versions
b996cc
b996cc
* Tue Mar 21 2017 Dominik Perpeet <dperpeet@redhat.com> 135-3
b996cc
- Update to 135 release
b996cc
- Redesigned page menu and machine switcher
b996cc
- Show /etc/motd in the "System" page
b996cc
- Allow changing the MAC address for ethernet adapters and see them for bonds
b996cc
- NetworkManager now activates slave interfaces by itself
b996cc
- Show "Locked/Unlocked" indicator for privilege escalation in the top bar
b996cc
- Privilege escalation works with sudo reauthorization
b996cc
- Use official /etc/ssh/ssh_known_hosts when connecting to remote hosts
b996cc
a7faa1
* Tue Feb 14 2017 Dominik Perpeet <dperpeet@redhat.com> 131-3
a7faa1
- Fix size of list heading rhbz#1422184
a7faa1
- Fix button tooltips rhbz#1365372 rhbz#1412036
a7faa1
- Make basic selinux functionality available without rhbz#1422181
a7faa1
a7faa1
* Tue Feb 07 2017 Stef Walter <stefw@redhat.com> 131-2
a7faa1
- Actually build cockpit-dashboard sub-package
a7faa1
a7faa1
* Tue Feb 07 2017 Stef Walter <stefw@redhat.com> 131-1
a7faa1
- Update to 131 release
a7faa1
- Support for configuring kdump kernel crash dumping
a7faa1
- Support for rebasing OSTrees and configuring OSTree remotes
a7faa1
- Cockpit now respects /etc/shells and prevents login when user has an invalid shell
a7faa1
- Add a 'LoginTo' option in cockpit.conf to toggle ability to login to other servers
a7faa1
- Validate textual input on the Networking page properly
a7faa1
45c0c4
* Thu Dec 15 2016 Dominik Perpeet <dperpeet@redhat.com> 126-1
45c0c4
- Update to 126 release
45c0c4
- Show security scan information about containers
45c0c4
- During login users can choose whether password is cached and reused
45c0c4
- Allow renaming of active devices in networking interface
45c0c4
- More clearly indicate when checking network connectivity
45c0c4
- Allow more time for rollback when making network changes rhbz#1395108
45c0c4
- The remotectl command can now combine certificate and key files
45c0c4
- Domain join operations can now be properly cancelled
45c0c4
- Make Kerberos authentication work even if gss-proxy is in use
45c0c4
- When proxied, support X-Forwarded-Proto
45c0c4
- Ignore block devices with a zero size in the storage interface
45c0c4
45c0c4
* Tue Dec 13 2016 Dominik Perpeet <dperpeet@redhat.com> 125-1
45c0c4
- Update to 125 release
45c0c4
- Display OSTree signatures on Atomic Host
45c0c4
- Expand logical volumes and partitions inline on their devices
45c0c4
- No longer offer to format read-only block devices
45c0c4
- Use stored passphrases for LUKS devices properly
45c0c4
- System shutdown can be scheduled by date
45c0c4
- Properly terminate user sessions on the Accounts page
45c0c4
- Fix regression on login screen in older Internet Explorer browsers
45c0c4
33cfa9
* Mon Nov 14 2016 Dominik Perpeet <dperpeet@redhat.com> 122-3
33cfa9
- Fix regression when activating virtual network interfaces rhbz#1394667
33cfa9
- Support network connections that don't have an interface name rhbz#1394668
33cfa9
- Fix registry console Windows IE and Edge login rhbz#1378810 rhbz#1393740
33cfa9
- Fix reloading of projects and users in kubernetes rhbz#1393785
33cfa9
- Only set websocket protocols if they are available rhbz#1394675
33cfa9
33cfa9
* Tue Nov 08 2016 Dominik Perpeet <dperpeet@redhat.com> 122-2
33cfa9
- Fix default flags for new VLAN devices rhbz#1390605
33cfa9
33cfa9
* Tue Nov 01 2016 Dominik Perpeet <dperpeet@redhat.com> 122-1
33cfa9
- Update to 122 release
33cfa9
- Cockpit can rollback network configuration that would otherwise disconnect an admin from the system
33cfa9
- Unmanaged network devices are now shown
33cfa9
- The list of Docker containers can be filtered and expanded inline
33cfa9
- Cockpit can be a "bastion host" by using the login page to connect to an alternate system via SSH
33cfa9
- Only connect to an alternate system if it has a known SSH host key
33cfa9
- When connecting to other systems, each SSH connection is run in a separate process
33cfa9
- Fixes bugs that prevent the "Logs" page from working in Firefox 49
33cfa9
- A network proxy can be used when registering with RHEL subscriptions rhbz#1338681
33cfa9
5e2f64
* Tue Sep 20 2016 Dominik Perpeet <dperpeet@redhat.com> 118-2
5e2f64
- Turn off Cockpit debug session
5e2f64
5e2f64
* Wed Sep 07 2016 Dominik Perpeet <dperpeet@redhat.com> 118-1
5e2f64
- Update to 118 release
5e2f64
- SELinux audit failures can be diagnosed and solutions applied to the system
5e2f64
- Configure storage for Docker containers and images
5e2f64
- Volumes and environment variables can be configured for Docker containers
5e2f64
- Support PAM conversations on the Login screen, enabling two factor authentication
5e2f64
- Cockpit URLs can be proxied with a configured HTTP path prefix
5e2f64
- Timer jobs in systemd can be created and configured
5e2f64
- Display all managed NetworkManager devices
5e2f64
- Add support for network teams
5e2f64
- Prevent removal of last volume from volume group rhbz#1354421
5e2f64
f2124f
* Fri Jul 15 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.114-2
f2124f
- The API of cockpit-bridge and cockpit-shell is now stable, other components
f2124f
  only depend on a version >= 0.114 now, not an exact match to their own version
f2124f
f2124f
* Tue Jul 12 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.114-1
f2124f
- Update to 0.114 release
f2124f
- Red Hat Subscriptions can now specify activation keys and orgs rhbz#1338680
f2124f
- Network configuration of the Ethernet MTU rhbz#1339552
f2124f
- SSH Host keys are show on system page rhbz#1318414
f2124f
- Properly show SSH keys on authentication page rhbz#1336686
f2124f
- Use 'active-backup' as the default for new network bonds rhbz#1348066
f2124f
- Don't show network interfaces where NM_CONTROLLED=no is set rhbz#1330552
f2124f
- Disable tuned correctly when clearing a performance profile rhbz#1330473
f2124f
- Use CockpitLang cookie and Accept-Language for localization
f2124f
- Cockpit terminal now supports shells like fish
f2124f
- Disable the network on/off switch for unknown or unmanaged interfaces
f2124f
  rhbz#1329954 rhbz#1329956
f2124f
- Show intelligent password score error messages rhbz#1330838
f2124f
- Show full string for system hardware info and operating system name rhbz#1331243
f2124f
- Ensure popup-info when creating an account remains on screen rhbz#1340749
f2124f
- Remove erroneous docker dependency rhbz#1349375
f2124f
0a45bd
* Tue May 31 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.108-1
0a45bd
- Update to 0.108 release
0a45bd
- Strict browser security policy for Cockpit is now enforced. This defines which code can be run in a Cockpit session and mitigates a number of browser based attacks.
0a45bd
63454a
* Tue Apr 19 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.103-1
63454a
- Update to 0.103 release
63454a
- When Cockpit fails to connect to a host, relevant SSH command or host details are displayed to help resolve the issue
63454a
- Docker restart policy can be configured when starting a new container
63454a
- Display a single combined dialog for creating logical volumes
63454a
- Don't offer a 'Computer OU' option when joining IPA domains
63454a
- Display binary journal data correctly
63454a
- Display IEC names (eg: MiB) for disk or file system sizes
63454a
- Refuse to shrink logical volumes and prevent negative sizes in file system partition dialogs
63454a
- Apply strict Content-Security-Policy on most of Cockpit to prevent a number of browser based attacks
63454a
- Numerous other bug fixes and admin interface improvements
63454a
06bfda
* Thu Mar 10 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.96-2
06bfda
- Fix selenium tests
06bfda
- Fix issue with dwz / go binaries in packages
06bfda
06bfda
* Thu Mar 3 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.96-1
06bfda
- Update to 0.96 release
06bfda
- Fix memory leaks, mostly related to DBus code
06bfda
- Compatible with docker 1.10
06bfda
- Limit concurrent authentication similar to sshd using 'MaxStartups' setting
06bfda
- Fixed up server disconnection UI
a22909
- Navigation fixes
e4854e
f573a2
* Wed Feb 10 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.93-3
f573a2
- Fix session path rhbz#1306145
f573a2
f573a2
* Mon Feb 8 2016 Stef Walter <stefw@redhat.com> - 0.93-2
f573a2
- Fix startup /dev/urandom read issue rhbz#1303582
f573a2
f573a2
* Mon Jan 25 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.93-1
f573a2
- Add tuned support
f573a2
- Exit on idle in cockpit-ws
f573a2
f573a2
* Thu Jan 21 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.92-1
f573a2
- Add OAuth login support
f573a2
- Make SOS report work on Atomic
f573a2
f573a2
* Mon Jan 18 2016 Stef Walter <stefw@redhat.com> - 0.91-2
f573a2
- Depend on correct rpm-ostree RPM on RHEL
f573a2
f573a2
* Fri Jan 15 2016 Dominik Perpeet <dperpeet@redhat.com> - 0.91-1
f573a2
- Update to 0.91 release
f573a2
- Fix Cockpit session issues with a second machine rhbz#1277938
f573a2
- Split out docker rhbz#1297797
f573a2
- Distribute licenses of included components in the source rpm
f573a2
- Reworked TLS certificates for Cockpit
f573a2
- Remove custom SELinux policy
f573a2
- SOS report UI page
f573a2
- User interface for OSTree upgrades and rollbacks
f573a2
- Offer to activate multipathd for multipath disks
f573a2
f89aa4
* Thu Oct 08 2015 Peter <petervo@redhat.com> - 0.77-3
f89aa4
- Update cockpit.pam to include pam_reauthorize and pam_ssh_add rhbz#1269623
f89aa4
f89aa4
* Wed Sep 30 2015 Stef Walter <stefw@redhat.com> - 0.77-2
f89aa4
- Fix extreme CPU usage bug rhbz#1266503
f89aa4
- Fix regressions in 0.77 rhbz#1266566
f89aa4
f89aa4
* Tue Sep 22 2015 Stef Walter <stefw@redhat.com> - 0.77-1
f89aa4
- Work better with multipath storage
f89aa4
- Deletion of kubernetes objects
f89aa4
- Cleaner URLs in the bookmark bar
f89aa4
- Show a warning when adding too many machines
f89aa4
- Make authentication work when embedding Cockpit
f89aa4
- Complete componentizing Cockpit
f89aa4
f89aa4
* Thu Aug 13 2015 Stef Walter <stefw@redhat.com> - 0.70-2
f89aa4
- kubernetes-client is not available on kubernetes yet
c6174b
f89aa4
* Wed Aug 12 2015 Stef Walter <stefw@redhat.com> - 0.70-1
f89aa4
- Update to 0.70 release
f89aa4
- Depend on kubernetes-client instead of kubernetes
c6174b
f89aa4
* Thu Aug 06 2015 Stef Walter <stefw@redhat.com> - 0.69-1
f89aa4
- Update to 0.69 release.
c6174b
f89aa4
* Wed Jul 29 2015 Peter <petervo@redhat.com> - 0.68-1
f89aa4
- Update to 0.68 release.
c6174b
f89aa4
* Thu Jul 23 2015 Peter <petervo@redhat.com> - 0.66-1
f89aa4
- Update to 0.66 release
0bd019
f89aa4
* Fri Jul 17 2015 Peter <petervo@redhat.com> - 0.65-2
f89aa4
- Require libssh 0.7.1 on fedora >= 22 systems
ffd391
f89aa4
* Wed Jul 15 2015 Peter <petervo@redhat.com> - 0.65-1
f89aa4
- Update to 0.65 release
ffd391
f89aa4
* Wed Jul 08 2015 Peter <petervo@redhat.com> - 0.64-1
f89aa4
- Update to 0.64 release
ffd391
f89aa4
* Wed Jul 01 2015 Peter <petervo@redhat.com> - 0.63-1
f89aa4
- Update to 0.63 release
f89aa4
- Remove cockpit-docker for armv7hl while docker
f89aa4
  packages are being fixed
ffd391
f89aa4
* Thu Jun 25 2015 Peter <petervo@redhat.com> - 0.62-1
f89aa4
- Update to 0.62 release
ffd391
f89aa4
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.61-2
f89aa4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b6b72a
f89aa4
* Wed Jun 10 2015 Peter <petervo@redhat.com> - 0.61-1
f89aa4
- Update to 0.61 release
b6b72a
f89aa4
* Mon Jun 01 2015 Stef Walter <stefw@redhat.com> - 0.60-1
f89aa4
- Update to 0.60 release
f89aa4
f89aa4
* Wed May 27 2015 Peter <petervo@redhat.com> - 0.59-1
f89aa4
- Update to 0.59 release
f89aa4
f89aa4
* Fri May 22 2015 Peter <petervo@redhat.com> - 0.58-1
f89aa4
- Update to 0.58 release
f89aa4
f89aa4
* Wed May 20 2015 Peter <petervo@redhat.com> - 0.57-1
f89aa4
- Update to 0.57 release
f89aa4
f89aa4
* Wed May 13 2015 Peter <petervo@redhat.com> - 0.56-1
f89aa4
- Update to 0.56 release
f89aa4
f89aa4
* Wed May 06 2015 Stef Walter <stefw@redhat.com> - 0.55-1
f89aa4
- Update to 0.55 release
f89aa4
f89aa4
* Fri Apr 24 2015 Peter <petervo@redhat.com> - 0.54-1
f89aa4
- Update to 0.54 release
f89aa4
f89aa4
* Tue Apr 21 2015 Peter <petervo@redhat.com> - 0.53-1
b6b72a
- Update to 0.53 release
b6b72a
b6b72a
* Thu Apr 16 2015 Stef Walter <stefw@redhat.com> - 0.52-1
b6b72a
- Update to 0.52 release
b6b72a
f89aa4
* Tue Apr 14 2015 Peter <petervo@redhat.com> - 0.51-1
b6b72a
- Update to 0.51 release
b6b72a
b6b72a
* Tue Apr 07 2015 Stef Walter <stefw@redhat.com> - 0.50-1
b6b72a
- Update to 0.50 release
b6b72a
f89aa4
* Wed Apr 01 2015 Stephen Gallagher <sgallagh@redhat.com> 0.49-2
f89aa4
- Fix incorrect Obsoletes: of cockpit-daemon
f89aa4
f89aa4
* Wed Apr 01 2015 Peter <petervo@redhat.com> - 0.49-1
b6b72a
- Update to 0.49 release.
b6b72a
- cockpitd was renamed to cockpit-wrapper the cockpit-daemon
b6b72a
  package was removed and is now installed with the
b6b72a
  cockpit-bridge package.
b6b72a
f89aa4
* Mon Mar 30 2015 Peter <petervo@redhat.com> - 0.48-1
b6b72a
- Update to 0.48 release
b6b72a
f89aa4
* Mon Mar 30 2015 Stephen Gallagher <sgallagh@redhat.com> 0.47-2
f89aa4
- Don't attempt to build cockpit-kubernetes on armv7hl
f89aa4
f89aa4
* Fri Mar 27 2015 Peter <petervo@redhat.com> - 0.47-1
f89aa4
- Update to 0.47 release, build docker on armvrhl
f89aa4
b6b72a
* Thu Mar 26 2015 Stef Walter <stefw@redhat.com> - 0.46-1
b6b72a
- Update to 0.46 release
b6b72a
b6b72a
* Mon Mar 23 2015 Stef Walter <stefw@redhat.com> - 0.45-1
b6b72a
- Update to 0.45 release
b6b72a
b6b72a
* Sat Mar 21 2015 Stef Walter <stefw@redhat.com> - 0.44-3
b6b72a
- Add back debuginfo files to the right place
b6b72a
b6b72a
* Fri Mar 20 2015 Stef Walter <stefw@redhat.com> - 0.44-2
b6b72a
- Disable separate debuginfo for now: build failure
b6b72a
b6b72a
* Fri Mar 20 2015 Stef Walter <stefw@redhat.com> - 0.44-1
b6b72a
- Update to 0.44 release
b6b72a
b6b72a
* Thu Mar 19 2015 Stef Walter <stefw@redhat.com> - 0.43-2
b6b72a
- Don't break EPEL or CentOS builds due to missing branding
b6b72a
b6b72a
* Wed Mar 18 2015 Stef Walter <stefw@redhat.com> - 0.43-1
b6b72a
- Update to 0.43 release
b6b72a
b6b72a
* Tue Mar 17 2015 Stef Walter <stefw@redhat.com> - 0.42-2
b6b72a
- Fix obseleting cockpit-assets
b6b72a
b6b72a
* Sat Mar 14 2015 Stef Walter <stefw@redhat.com> - 0.42-1
b6b72a
- Update to 0.42 release
b6b72a
b6b72a
* Wed Mar 04 2015 Stef Walter <stefw@redhat.com> - 0.41-1
b6b72a
- Update to 0.41 release
b6b72a
b6b72a
* Thu Feb 26 2015 Stef Walter <stefw@redhat.com> - 0.40-1
b6b72a
- Update to 0.40 release
b6b72a
b6b72a
* Thu Feb 19 2015 Stef Walter <stefw@redhat.com> - 0.39-1
b6b72a
- Update to 0.39 release
b6b72a
b6b72a
* Wed Jan 28 2015 Stef Walter <stefw@redhat.com> - 0.38-1
b6b72a
- Update to 0.38 release
b6b72a
b6b72a
* Thu Jan 22 2015 Stef Walter <stefw@redhat.com> - 0.37-1
b6b72a
- Update to 0.37 release
b6b72a
b6b72a
* Mon Jan 12 2015 Stef Walter <stefw@redhat.com> - 0.36-1
b6b72a
- Update to 0.36 release
b6b72a
b6b72a
* Mon Dec 15 2014 Stef Walter <stefw@redhat.com> - 0.35-1
b6b72a
- Update to 0.35 release
b6b72a
b6b72a
* Thu Dec 11 2014 Stef Walter <stefw@redhat.com> - 0.34-1
b6b72a
- Update to 0.34 release
b6b72a
b6b72a
* Fri Dec 05 2014 Stef Walter <stefw@redhat.com> - 0.33-3
b6b72a
- Only depend on docker stuff on x86_64
b6b72a
b6b72a
* Fri Dec 05 2014 Stef Walter <stefw@redhat.com> - 0.33-2
b6b72a
- Only build docker stuff on x86_64
b6b72a
b6b72a
* Wed Dec 03 2014 Stef Walter <stefw@redhat.com> - 0.33-1
b6b72a
- Update to 0.33 release
b6b72a
b6b72a
* Mon Nov 24 2014 Stef Walter <stefw@redhat.com> - 0.32-1
b6b72a
- Update to 0.32 release
b6b72a
b6b72a
* Fri Nov 14 2014 Stef Walter <stefw@redhat.com> - 0.31-1
b6b72a
- Update to 0.31 release
b6b72a
b6b72a
* Wed Nov 12 2014 Stef Walter <stefw@redhat.com> - 0.30-1
b6b72a
- Update to 0.30 release
b6b72a
- Split Cockpit into various sub packages
b6b72a
b6b72a
* Wed Nov 05 2014 Stef Walter <stefw@redhat.com> - 0.29-3
b6b72a
- Don't require test-assets from selinux-policy
b6b72a
- Other minor tweaks and fixes
b6b72a
b6b72a
* Wed Nov 05 2014 Stef Walter <stefw@redhat.com> - 0.29-2
b6b72a
- Include selinux policy as a dep where required
b6b72a
b6b72a
* Wed Nov 05 2014 Stef Walter <stefw@redhat.com> - 0.29-1
b6b72a
- Update to 0.29 release
b6b72a
b6b72a
* Thu Oct 16 2014 Stef Walter <stefw@redhat.com> - 0.28-1
b6b72a
- Update to 0.28 release
b6b72a
- cockpit-agent was renamed to cockpit-bridge
b6b72a
b6b72a
* Fri Oct 10 2014 Stef Walter <stefw@redhat.com> - 0.27-1
b6b72a
- Update to 0.27 release
b6b72a
- Don't create cockpit-*-admin groups rhbz#1145135
b6b72a
- Fix user management for non-root users rhbz#1140562
b6b72a
- Fix 'out of memory' error during ssh auth rhbz#1142282
b6b72a
b6b72a
* Wed Oct 08 2014 Stef Walter <stefw@redhat.com> - 0.26-1
b6b72a
- Update to 0.26 release
b6b72a
- Can see disk usage on storage page rhbz#1142459
b6b72a
- Better order for lists of block devices rhbz#1142443
b6b72a
- Setting container memory limit fixed rhbz#1142362
b6b72a
- Can create storage volume of maximum capacity rhbz#1142259
b6b72a
- Fix RAID device Bitmap enable/disable error rhbz#1142248
b6b72a
- Docker page connects to right machine rhbz#1142229
b6b72a
- Clear the format dialog label correctly rhbz#1142228
b6b72a
- No 'Drop Privileges' item in menu for root rhbz#1142197
b6b72a
- Don't flash 'Server has closed Connection on logout rhbz#1142175
b6b72a
- Non-root users can manipulate user accounts rhbz#1142154
b6b72a
- Fix strange error message when editing user accounts rhbz#1142154
b6b72a
b6b72a
* Wed Sep 24 2014 Stef Walter <stefw@redhat.com> - 0.25-1
b6b72a
- Update to 0.25 release
b6b72a
b6b72a
* Wed Sep 17 2014 Stef Walter <stefw@redhat.com> - 0.24-1
b6b72a
- Update to 0.24 release
b6b72a
b6b72a
* Wed Sep 10 2014 Stef Walter <stefw@redhat.com> - 0.23-1
b6b72a
- Update to 0.23 release
b6b72a
b6b72a
* Wed Sep 03 2014 Stef Walter <stefw@redhat.com> - 0.22-1
b6b72a
- Update to 0.22 release
b6b72a
b6b72a
* Tue Aug 26 2014 Patrick Uiterwijk <puiterwijk@redhat.com> - 0.21-1
b6b72a
- Update to 0.21 release
b6b72a
b6b72a
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20-2
b6b72a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b6b72a
b6b72a
* Thu Aug 14 2014 Stef Walter <stefw@redhat.com> 0.20-1
b6b72a
- Update to 0.20 release
b6b72a
b6b72a
* Thu Aug 07 2014 Stef Walter <stefw@redhat.com> 0.19-1
b6b72a
- Update to 0.19 release
b6b72a
b6b72a
* Wed Jul 30 2014 Stef Walter <stefw@redhat.com> 0.18-1
b6b72a
- Update to 0.18 release
b6b72a
- Add glib-networking build requirement
b6b72a
- Let selinux-policy-targetted distribute selinux policy
b6b72a
b6b72a
* Mon Jul 28 2014 Colin Walters <walters@verbum.org> 0.17-2
b6b72a
- Drop Requires and references to dead test-assets subpackage
b6b72a
b6b72a
* Thu Jul 24 2014 Stef Walter <stefw@redhat.com> 0.17-1
b6b72a
- Update to 0.17 release
b6b72a
b6b72a
* Wed Jul 23 2014 Stef Walter <stefw@redhat.com> 0.16-3
b6b72a
- Distribute our own selinux policy rhbz#1110758
b6b72a
b6b72a
* Tue Jul 22 2014 Stef Walter <stefw@redhat.com> 0.16-2
b6b72a
- Refer to cockpit.socket in scriptlets rhbz#1110764
b6b72a
b6b72a
* Thu Jul 17 2014 Stef Walter <stefw@redhat.com> 0.16-1
b6b72a
- Update to 0.16 release
b6b72a
b6b72a
* Thu Jul 10 2014 Stef Walter <stefw@redhat.com> 0.15-1
b6b72a
- Update to 0.15 release
b6b72a
- Put pam_reauthorize.so in the cockpit PAM stack
b6b72a
b6b72a
* Thu Jul 03 2014 Stef Walter <stefw@redhat.com> 0.14-1
b6b72a
- Update to 0.14 release
b6b72a
b6b72a
* Mon Jun 30 2014 Stef Walter <stefw@redhat.com> 0.13-1
b6b72a
- Update to 0.13 release
b6b72a
b6b72a
* Tue Jun 24 2014 Stef Walter <stefw@redhat.com> 0.12-1
b6b72a
- Update to upstream 0.12 release
b6b72a
b6b72a
* Fri Jun 20 2014 Stef Walter <stefw@redhat.com> 0.11-1
b6b72a
- Update to upstream 0.11 release
b6b72a
b6b72a
* Thu Jun 12 2014 Stef Walter <stefw@redhat.com> 0.10-1
b6b72a
- Update to upstream 0.10 release
b6b72a
b6b72a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-2
b6b72a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b6b72a
b6b72a
* Fri May 23 2014 Stef Walter <stefw@redhat.com> 0.9-1
b6b72a
- Update to upstream 0.9 release
b6b72a
- Fix file attribute for cockpit-polkit
b6b72a
b6b72a
* Wed May 21 2014 Stef Walter <stefw@redhat.com> 0.8-1
b6b72a
- Update to upstream 0.8 release
b6b72a
- cockpitd now runs as a user session DBus service
b6b72a
b6b72a
* Mon May 19 2014 Stef Walter <stefw@redhat.com> 0.7-1
b6b72a
- Update to upstream 0.7 release
b6b72a
b6b72a
* Wed May 14 2014 Stef Walter <stefw@redhat.com> 0.6-1
b6b72a
- Update to upstream 0.6 release
b6b72a
b6b72a
* Tue Apr 15 2014 Stef Walter <stefw@redhat.com> 0.5-1
b6b72a
- Update to upstream 0.5 release
b6b72a
b6b72a
* Thu Apr 03 2014 Stef Walter <stefw@redhat.com> 0.4-1
b6b72a
- Update to upstream 0.4 release
b6b72a
- Lots of packaging cleanup and polish
b6b72a
b6b72a
* Fri Mar 28 2014 Stef Walter <stefw@redhat.com> 0.3-1
b6b72a
- Update to upstream 0.3 release
b6b72a
b6b72a
* Wed Feb 05 2014 Patrick Uiterwijk (LOCAL) <puiterwijk@redhat.com> - 0.2-0.4.20140204git5e1faad
b6b72a
- Redid the release tag
b6b72a
b6b72a
* Tue Feb 04 2014 Patrick Uiterwijk (LOCAL) <puiterwijk@redhat.com> - 0.2-0.3.5e1faadgit
b6b72a
- Fixed license tag
b6b72a
- Updated to new FSF address upstream
b6b72a
- Removing libgsystem before build
b6b72a
- Now claiming specific manpages
b6b72a
- Made the config files noreplace
b6b72a
- Removed the test assets
b6b72a
- Put the web assets in a subpackage
b6b72a
b6b72a
* Tue Feb 04 2014 Patrick Uiterwijk (LOCAL) <puiterwijk@redhat.com> - 0.2-0.2.5e1faadgit
b6b72a
- Patch libgsystem out