Accepting request 126819 from Base:System

- do not allow symlinks to point to itself (not existant as result) (forwarded request 126814 from coolo)

OBS-URL: https://build.opensuse.org/request/show/126819
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/brp-check-suse?expand=0&rev=42
This commit is contained in:
Sascha Peilicke 2012-07-02 07:35:07 +00:00 committed by Git OBS Bridge
commit a93a5f3a6b
3 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sun Jul 1 19:37:50 UTC 2012 - coolo@suse.com
- do not allow symlinks to point to itself (not existant as result)
-------------------------------------------------------------------
Tue Mar 13 13:53:13 CET 2012 - ro@suse.de

View File

@ -33,6 +33,7 @@ Url: http://gitorious.org/opensuse/brp-check-suse/
# make package
#
Source0: %{name}-%{version}.tar.bz2
Patch0: check-broken-symlinks.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%global provfind sh -c "grep -v 'brp-desktop.data' | %__find_provides"
%global __find_provides %provfind
@ -47,6 +48,7 @@ build root checking or in parts implemeting SUSE policies.
%ifnarch x86_64 s390x ppc64
rm brp-65-lib64-linux
%endif
%patch0 -p1
%build
# nothing to do

View File

@ -0,0 +1,16 @@
Index: brp-check-suse-1.0/brp-25-symlink
===================================================================
--- brp-check-suse-1.0.orig/brp-25-symlink 2012-03-13 13:52:11.000000000 +0100
+++ brp-check-suse-1.0/brp-25-symlink 2012-07-01 21:37:11.698384089 +0200
@@ -79,6 +79,11 @@ do
fi
done
+ if test "$link" = "$link_dest"; then
+ echo "ERROR: $link points to itself (as $orig_link_dest)"
+ exit 1
+ fi
+
# black list
case "$link,$link_dest" in
*,/var/lib/named*)