diff -u scponly-4.6/debian/changelog scponly-4.6/debian/changelog --- scponly-4.6/debian/changelog +++ scponly-4.6/debian/changelog @@ -1,3 +1,13 @@ +scponly (4.6-1.2ubuntu1) hardy; urgency=low + + * patched setup_chroot.sh.in so that dev/null get's created in the chroot + (LP: #191422). OpenSSH for scponly requires a dev/null in the execution + enviroment, this was not the fact in the past and may change in the future. + * changed Maintainer-Field to MOTU and introduced XSBC-Original-Maintainer + with former maintainer. + + -- Albrecht Mühlenschulte Fri, 15 Feb 2008 16:06:01 +0100 + scponly (4.6-1.2) unstable; urgency=high * Non-maintainer upload by the Security Team diff -u scponly-4.6/debian/control scponly-4.6/debian/control --- scponly-4.6/debian/control +++ scponly-4.6/debian/control @@ -1,7 +1,8 @@ Source: scponly Section: utils Priority: optional -Maintainer: Thomas Wana +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Thomas Wana Build-Depends: debhelper (>= 4.1.16), rsync, ssh, unison, subversion Standards-Version: 3.6.1.0 diff -u scponly-4.6/debian/rules scponly-4.6/debian/rules --- scponly-4.6/debian/rules +++ scponly-4.6/debian/rules @@ -23,6 +23,7 @@ # INSTALL_PROGRAM += -s # endif + config.status: configure dh_testdir # Add here commands to configure the package. only in patch2: unchanged: --- scponly-4.6.orig/setup_chroot.sh.in +++ scponly-4.6/setup_chroot.sh.in @@ -199,6 +199,10 @@ done fi +# /dev/null is neede inside the chroot +mkdir $targetdir/dev +mknod -m 666 1 3 $targetdir/dev/null + if [ "x$USE_PW" = x0 ] ; then @PROG_USERADD@ -d "$targetdir" -s "@prefix@/sbin/@CHROOTED_NAME@" $targetuser if [ $? -ne 0 ]; then