Bug#927298: unblock: ebtables/2.0.10.4+snapshot20181205-3
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package ebtables
A serious bug was opened on ebtables and arptables regarding an issue
with usr merged systems. This patch solves this issue.
The debdiff also includes a previous minor commit including salsa CI files, if you
consider this must not be included, please let me know.
unblock ebtables/2.0.10.4+snapshot20181205-3
Thanks
diff -Nru ebtables-2.0.10.4+snapshot20181205/debian/changelog ebtables-2.0.10.4+snapshot20181205/debian/changelog
--- ebtables-2.0.10.4+snapshot20181205/debian/changelog 2019-02-02 19:31:28.000000000 +0000
+++ ebtables-2.0.10.4+snapshot20181205/debian/changelog 2019-04-15 18:23:43.000000000 +0000
@@ -1,3 +1,13 @@
+ebtables (2.0.10.4+snapshot20181205-3) unstable; urgency=medium
+
+ [ Arturo Borrero Gonzalez ]
+ * [9b474c7] src:ebtables: add salsa CI integration
+
+ [ Alberto Molina Coballes ]
+ * [5dbd22d] Remove /sbin symlinks on not usr-merged systems (Closes: #926728)
+
+ -- Alberto Molina Coballes <alb.molina@gmail.com> Mon, 15 Apr 2019 18:23:43 +0000
+
ebtables (2.0.10.4+snapshot20181205-2) unstable; urgency=medium
[ Alberto Molina Coballes ]
diff -Nru ebtables-2.0.10.4+snapshot20181205/debian/ebtables.prerm ebtables-2.0.10.4+snapshot20181205/debian/ebtables.prerm
--- ebtables-2.0.10.4+snapshot20181205/debian/ebtables.prerm 2019-01-27 20:33:36.000000000 +0000
+++ ebtables-2.0.10.4+snapshot20181205/debian/ebtables.prerm 2019-04-15 08:53:11.000000000 +0000
@@ -7,12 +7,14 @@
fi
if [ "$1" = "remove" ] ; then
- LIST="ebtables ebtables-save ebtables-restore"
- for i in $LIST ; do
- if [ -L "/sbin/$i" ] ; then
- rm /sbin/$i
- fi
- done
+ if [ ! -L /sbin ] || [ "$(readlink /sbin)" != "usr/sbin" ]; then
+ LIST="ebtables ebtables-save ebtables-restore"
+ for i in $LIST ; do
+ if [ -L "/sbin/$i" ] ; then
+ rm /sbin/$i
+ fi
+ done
+ fi
fi
#DEBHELPER#
diff -Nru ebtables-2.0.10.4+snapshot20181205/debian/gitlab-ci.yml ebtables-2.0.10.4+snapshot20181205/debian/gitlab-ci.yml
--- ebtables-2.0.10.4+snapshot20181205/debian/gitlab-ci.yml 1970-01-01 00:00:00.000000000 +0000
+++ ebtables-2.0.10.4+snapshot20181205/debian/gitlab-ci.yml 2019-03-02 18:04:37.000000000 +0000
@@ -0,0 +1,6 @@
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
+
+variables:
+ RELEASE: 'unstable'
Reply to: