Accepting request 711871 from home:bmanojlovic:admin

- updated to latest release 195  
- New upstream version - 189
- New upstream version - 186
- New upstream version - 180
- New upstream version - 177
- First build. Version - 176.
- Update to 0.79
  * Vagrant file for Cockpit development
  * Use libvirt for testing
  * Display only last lines of Kubernetes container logs
  See https://github.com/cockpit-project/cockpit/releases
- Add branding-symlinks.patch, SUSE doesn't carry Fedora pixmaps
- Initial release 0.38

OBS-URL: https://build.opensuse.org/request/show/711871
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:cockpit/cockpit?expand=0&rev=25
This commit is contained in:
Klaus Kämpf 2019-06-25 12:44:15 +00:00 committed by Git OBS Bridge
parent 8ed811c5af
commit 64c45561f6
9 changed files with 797 additions and 520 deletions

View File

@ -1,45 +0,0 @@
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-cockpit-0.64/branding/centos/Makefile.am ./branding/centos/Makefile.am
--- ../orig-cockpit-0.64/branding/centos/Makefile.am 2015-06-22 18:12:23.000000000 +0200
+++ ./branding/centos/Makefile.am 2015-10-14 11:56:47.720876974 +0200
@@ -5,8 +5,7 @@
branding/centos/bg-login.jpg \
$(NULL)
-# Opportunistically use fedora-logos
install-data-hook::
- $(LN_S) -f /usr/share/pixmaps/system-logo-white.png $(DESTDIR)$(centosbrandingdir)/logo.png
- $(LN_S) -f /usr/share/pixmaps/fedora-logo-sprite.png $(DESTDIR)$(centosbrandingdir)/apple-touch-icon.png
- $(LN_S) -f /etc/favicon.png $(DESTDIR)$(centosbrandingdir)/favicon.ico
+ $(LN_S) -f ../default/logo.png $(DESTDIR)$(centosbrandingdir)/logo.png
+ $(LN_S) -f ../default/apple-touch-icon.png $(DESTDIR)$(centosbrandingdir)/apple-touch-icon.png
+ $(LN_S) -f ../default/favicon.ico $(DESTDIR)$(centosbrandingdir)/favicon.ico
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-cockpit-0.64/branding/fedora/Makefile.am ./branding/fedora/Makefile.am
--- ../orig-cockpit-0.64/branding/fedora/Makefile.am 2015-06-22 18:12:23.000000000 +0200
+++ ./branding/fedora/Makefile.am 2015-10-14 11:54:30.418787310 +0200
@@ -5,8 +5,7 @@
branding/fedora/bg-login.jpg \
$(NULL)
-# Opportunistically use fedora-logos
install-data-hook::
- $(LN_S) -f /usr/share/pixmaps/system-logo-white.png $(DESTDIR)$(fedorabrandingdir)/logo.png
- $(LN_S) -f /usr/share/pixmaps/fedora-logo-sprite.png $(DESTDIR)$(fedorabrandingdir)/apple-touch-icon.png
- $(LN_S) -f /etc/favicon.png $(DESTDIR)$(fedorabrandingdir)/favicon.ico
+ $(LN_S) -f ../default/logo.png $(DESTDIR)$(fedorabrandingdir)/logo.png
+ $(LN_S) -f ../default/apple-touch-icon.png $(DESTDIR)$(fedorabrandingdir)/apple-touch-icon.png
+ $(LN_S) -f ../default/favicon.ico $(DESTDIR)$(fedorabrandingdir)/favicon.ico
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-cockpit-0.64/branding/rhel/Makefile.am ./branding/rhel/Makefile.am
--- ../orig-cockpit-0.64/branding/rhel/Makefile.am 2015-06-22 18:12:23.000000000 +0200
+++ ./branding/rhel/Makefile.am 2015-10-14 11:53:47.144867940 +0200
@@ -5,8 +5,7 @@
branding/rhel/bg-login.jpg \
$(NULL)
-# Opportunistically use redhat-logos ... yes they're called 'fedora'
install-data-hook::
- $(LN_S) -f /usr/share/pixmaps/system-logo-white.png $(DESTDIR)$(rhelbrandingdir)/logo.png
- $(LN_S) -f /usr/share/pixmaps/fedora-logo-sprite.png $(DESTDIR)$(rhelbrandingdir)/apple-touch-icon.png
- $(LN_S) -f /etc/favicon.png $(DESTDIR)$(rhelbrandingdir)/favicon.ico
+ $(LN_S) -f ../default/logo.png $(DESTDIR)$(rhelbrandingdir)/logo.png
+ $(LN_S) -f ../default/apple-touch-icon.png $(DESTDIR)$(rhelbrandingdir)/apple-touch-icon.png
+ $(LN_S) -f ../default/favicon.ico $(DESTDIR)$(rhelbrandingdir)/favicon.ico

BIN
cockpit-0.79.tar.bz2 (Stored with Git LFS)

Binary file not shown.

BIN
cockpit-195.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,16 +0,0 @@
#%PAM-1.0
auth required pam_sepermit.so
auth substack password-auth
auth include postlogin
account required pam_nologin.so
account include password-auth
password include password-auth
# pam_selinux.so close should be the first session rule
session required pam_selinux.so close
session required pam_loginuid.so
# pam_selinux.so open should only be followed by sessions to be executed in the user context
session required pam_selinux.so open env_params
session optional pam_keyinit.so force revoke
session include password-auth
session include postlogin

9
cockpit-rpmlintrc Normal file
View File

@ -0,0 +1,9 @@
# False positive
addFilter('explicit-lib-dependency.*libvirt-client');
# Do not break build in home:
setBadness('polkit-untracked-privilege', 100);
setBadness('invalid-filepath-dependency', 100);
setBadness('non-ghost-in-run', 100);
setBadness('permissions-file-setuid-bit', 100);
# hmh...
setBadness('non-position-independent-executable', 100);

View File

@ -1,7 +0,0 @@
#%PAM-1.0
auth required pam_unix2.so nullok
auth required pam_nologin.so
account required pam_unix2.so
password required pam_pwcheck.so nullok
password required pam_unix2.so nullok use_first_pass use_authtok
session required pam_unix2.so none

View File

@ -1,3 +1,33 @@
-------------------------------------------------------------------
Fri Jun 21 13:44:05 UTC 2019 - Boris Manojlovic <boris@steki.net>
- updated to latest release 195
-------------------------------------------------------------------
Thu Mar 7 13:23:36 UTC 2019 - Alex <aevseev@gmail.com>
- New upstream version - 189
-------------------------------------------------------------------
Mon Feb 4 18:24:55 UTC 2019 - aevseev@gmail.com
- New upstream version - 186
-------------------------------------------------------------------
Wed Oct 24 13:37:31 UTC 2018 - aevseev@gmail.com
- New upstream version - 180
-------------------------------------------------------------------
Fri Sep 7 10:24:09 UTC 2018 - aevseev@gmail.com
- New upstream version - 177
-------------------------------------------------------------------
Mon Aug 27 08:28:01 UTC 2018 - aevseev@gmail.com
- First build. Version - 176.
-------------------------------------------------------------------
Tue Oct 13 11:41:44 UTC 2015 - kkaempf@suse.com
@ -14,4 +44,3 @@ Tue Oct 13 11:41:44 UTC 2015 - kkaempf@suse.com
Sat Feb 7 13:22:23 UTC 2015 - kkaempf@suse.com
- Initial release 0.38

8
cockpit.pam Normal file
View File

@ -0,0 +1,8 @@
#%PAM-1.0
auth substack common-auth
account required pam_nologin.so
account include common-account
password include common-password
session required pam_loginuid.so
session optional pam_keyinit.so force revoke
session include common-session

File diff suppressed because it is too large Load Diff