--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package sidedoor
sidedoor 0.2.0-3 in unstable fixes #854720 (serious) by moving the
location of a configuration file read by ucf in postinst. A source
debdiff is attached. Thank you.
unblock sidedoor/0.2.0-3
diff -Nru sidedoor-0.2.0/debian/changelog sidedoor-0.2.0/debian/changelog
--- sidedoor-0.2.0/debian/changelog 2017-01-22 01:41:58.000000000 -0500
+++ sidedoor-0.2.0/debian/changelog 2017-02-09 15:37:43.000000000 -0500
@@ -1,3 +1,10 @@
+sidedoor (0.2.0-3) unstable; urgency=medium
+
+ * Move sudoers example to sidedoor-sudo package.
+ Thanks Andreas Beckmann. (Closes: #854720)
+
+ -- Dara Adib <daradib@ocf.berkeley.edu> Thu, 09 Feb 2017 15:37:43 -0500
+
sidedoor (0.2.0-2) unstable; urgency=medium
* Fixes to sidedoor-sudo.
diff -Nru sidedoor-0.2.0/debian/control sidedoor-0.2.0/debian/control
--- sidedoor-0.2.0/debian/control 2017-01-22 01:21:16.000000000 -0500
+++ sidedoor-0.2.0/debian/control 2017-02-09 15:37:43.000000000 -0500
@@ -41,5 +41,5 @@
sidedoor maintains an SSH connection or tunnel
with a shell script daemon.
.
- This empty package creates a sudoers entry to
+ This package creates a sudoers entry to
grant the sidedoor user full root access.
diff -Nru sidedoor-0.2.0/debian/sidedoor.examples sidedoor-0.2.0/debian/sidedoor.examples
--- sidedoor-0.2.0/debian/sidedoor.examples 2017-01-17 20:58:41.000000000 -0500
+++ sidedoor-0.2.0/debian/sidedoor.examples 2017-02-09 15:37:43.000000000 -0500
@@ -1,2 +1 @@
ssh_client_config_example
-sudoers
diff -Nru sidedoor-0.2.0/debian/sidedoor-sudo.install sidedoor-0.2.0/debian/sidedoor-sudo.install
--- sidedoor-0.2.0/debian/sidedoor-sudo.install 1969-12-31 19:00:00.000000000 -0500
+++ sidedoor-0.2.0/debian/sidedoor-sudo.install 2017-02-09 15:37:43.000000000 -0500
@@ -0,0 +1 @@
+sudoers usr/share/sidedoor-sudo
diff -Nru sidedoor-0.2.0/debian/sidedoor-sudo.postinst sidedoor-0.2.0/debian/sidedoor-sudo.postinst
--- sidedoor-0.2.0/debian/sidedoor-sudo.postinst 2017-01-22 01:41:58.000000000 -0500
+++ sidedoor-0.2.0/debian/sidedoor-sudo.postinst 2017-02-09 15:37:43.000000000 -0500
@@ -4,11 +4,11 @@
#DEBHELPER#
-EXAMPLE=/usr/share/doc/sidedoor/examples/sudoers
+SOURCE=/usr/share/sidedoor-sudo/sudoers
SUDOERS=/etc/sudoers.d/sidedoor
if [ "$1" = configure ]; then
- ucf "$EXAMPLE" "$SUDOERS"
+ ucf "$SOURCE" "$SUDOERS"
chmod 0440 "$SUDOERS" # for extra peace of mind
ucfr sidedoor-sudo "$SUDOERS"
fi
--- End Message ---