The branch, build-main has been updated via 9f416ebe9cf60c6fdd4d3e273b0c60c974e2ac3c (commit) from cf8bce82ec7a9bf42b29bd7b79a812df215c233f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: debian/changelog | 2 ++ .../sbin/x2gothinclient_create | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index a7c5f03..7e21578 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,8 @@ x2gothinclient (1.0.99.1-0~x2go1) UNRELEASED; urgency=low - Handle /etc/fstab in TCE chroot differently for squeeze and wheezy (/dev/pts does not need an entry in fstab on wheezy systems, /var/run got relocated to /run). + - /etc/network/interfaces in wheezy already contains a loopback device + entry. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 10 Aug 2012 14:13:49 +0200 diff --git a/x2gothinclientmanagement/sbin/x2gothinclient_create b/x2gothinclientmanagement/sbin/x2gothinclient_create index 078c110..bda5a73 100755 --- a/x2gothinclientmanagement/sbin/x2gothinclient_create +++ b/x2gothinclientmanagement/sbin/x2gothinclient_create @@ -78,8 +78,10 @@ export ftp_proxy="$TC_FTP_PROXY" debootstrap --arch i386 $TC_DISTRO_CODENAME $TC_CHROOT/ $TC_DEBMIRROR_URL cp /etc/resolv.conf $TC_CHROOT/etc/resolv.conf -echo "auto lo" >> $TC_CHROOT/etc/network/interfaces -echo "iface lo inet loopback" >> $TC_CHROOT/etc/network/interfaces +if [ "$TC_DISTRO_CODENAME" = "squeeze" ]; then + echo "auto lo" >> $TC_CHROOT/etc/network/interfaces + echo "iface lo inet loopback" >> $TC_CHROOT/etc/network/interfaces +fi echo "x2gothinclient" > $TC_CHROOT/etc/hostname echo "127.0.0.1 localhost" >> $TC_CHROOT/etc/hosts hooks/post-receive -- x2gothinclient.git (X2Go Thin Client Environment) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "x2gothinclient.git" (X2Go Thin Client Environment).