Dominique Leuenberger 2020-09-04 08:53:37 +00:00 committed by Git OBS Bridge
commit 60371d7d47
5 changed files with 31 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<servicedata>
<service name="tar_scm">
<param name="url">git://github.com/openSUSE/post-build-checks.git</param>
<param name="changesrevision">cc927e6a40f1bb818af40f82cab534d97d2f1138</param></service>
<param name="changesrevision">584742418b33de1237c278f8ba746f25b419d9cd</param></service>
</servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1a7ec3727dacf1a0b03ced2400149b7ebd3a988f9bb3c13966a58d07c45ebadc
size 31564

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:888dd4445ab6860925e31275e67c0151aeb089d590491ec1914b3343e3e8e5c9
size 31572

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Aug 24 16:17:32 CEST 2020 - ro@suse.de
- add the abuild user to the trusted group so that
fusermount works (boo#1159963)
-------------------------------------------------------------------
Wed Aug 19 08:42:27 UTC 2020 - ro@suse.de
- Update to version 84.87+git20200819.5847424:
* Revert "50-check-permissions use --level option of chkstat"
-------------------------------------------------------------------
Tue Aug 18 12:15:36 UTC 2020 - ro@suse.de
- Update to version 84.87+git20200818.e4ffaa8:
* 50-check-permissions use --level option of chkstat
(boo#1159963)
-------------------------------------------------------------------
Mon Mar 23 11:08:48 UTC 2020 - kukuk@suse.com

View File

@ -16,13 +16,13 @@
#
%define version_unconverted 84.87+git20200323.45c6eba
%define version_unconverted 84.87+git20200819.5847424
Name: post-build-checks
Summary: post checks for build after rpms have been created
License: GPL-2.0-or-later
Group: Development/Tools/Building
Version: 84.87+git20200323.45c6eba
Version: 84.87+git20200819.5847424
Release: 0
PreReq: aaa_base permissions sed
Requires: aaa_base-malloccheck
@ -73,10 +73,16 @@ chmod 755 $RPM_BUILD_ROOT/usr/lib/build/checks-data/check*
if ! test -e /.buildenv; then
exit 0
fi
# change the PERMISSION set to "secure"
sed -i -e "s@^PERMISSION_SECURITY=.*@PERMISSION_SECURITY=\"secure\"@" /etc/sysconfig/security
# add the abuild user to the trusted group so that fusermount works
usermod -G trusted -a abuild || true
# set the timezone to UTC
if [ -f /etc/sysconfig/clock ] ; then
sed -i -e "s@^TIMEZONE=.*@TIMEZONE=\"UTC\"@" /etc/sysconfig/clock
fi
# and add the ugly workaround to override the output of uname -v
# to match the installed kernel sources
UNAME=/bin/uname
if test -f /usr/bin/uname ; then
UNAME=/usr/bin/uname