Debian Bug report logs -
#589646
ltsp-server installation fails during installation of debian-edu
Reported by: "Andreas B. Mundt" <andi.mundt@web.de>
Date: Mon, 19 Jul 2010 14:36:01 UTC
Severity: grave
Tags: patch
Found in version ltsp/5.2.3-1
Fixed in version ltsp/5.2.3-2
Done: Petter Reinholdtsen <pere@debian.org>
Bug is archived. No further changes may be made.
Toggle useless messages
Report forwarded
to debian-bugs-dist@lists.debian.org, LTSP Debian/Ubuntu Maintainers <pkg-ltsp-devel@lists.alioth.debian.org>:
Bug#589646; Package ltsp-server.
(Mon, 19 Jul 2010 14:36:04 GMT) (full text, mbox, link).
Acknowledgement sent
to "Andreas B. Mundt" <andi.mundt@web.de>:
New Bug report received and forwarded. Copy sent to LTSP Debian/Ubuntu Maintainers <pkg-ltsp-devel@lists.alioth.debian.org>.
(Mon, 19 Jul 2010 14:36:05 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: ltsp-server
Version: 5.2.3-1
Severity: grave
Tags: patch
Justification: renders package unusable
User: debian-edu@lists.debian.org
Usertags: debian-edu
Hi,
current debian-edu installer dvd (rsync -avzP ftp.skolelinux.org::cd-squeeze-test-dvd/debian-edu-amd64-i386-DVD-1.iso debian-edu-DVD-1-squeeze.iso)
fails to set up the ltsp-server. The error reported is:
in_target: mount: can't find /cdrom in /etc/fstab or /etc/mtab
I managed to get a bit further by applying the following patch to
ltsp-5.2.3/server/plugins/ltsp-build-client/Debian/099-mount-cdrom:
--- 099-mount-cdrom.orig 2010-07-19 15:53:39.000000000 +0200
+++ 099-mount-cdrom 2010-07-19 15:54:01.000000000 +0200
@@ -11,12 +11,12 @@
;;
before-install)
if [ "$MOUNT_CDROM" = "true" ]; then
- mount /cdrom
+ mount /media/cdrom
fi
;;
finalization)
if [ "$MOUNT_CDROM" = "true" ]; then
- umount /cdrom
+ umount /media/cdrom
fi
;;
esac
The mount works now, but the next error reported is:
in_target: I: Retrieving Release
in_target: E: Failed getting release file file:///cdrom/dists/squeeze/Release
Applying the following patch to tsp-5.2.3/debian/ltsp-client-builder.templates
--- ltsp-client-builder.templates.orig 2010-07-19 16:19:54.000000000 +0200
+++ ltsp-client-builder.templates 2010-07-19 14:33:00.000000000 +0200
@@ -29,7 +29,7 @@
Template: ltsp-client-builder/build-client-opts
Type: string
-Default: --mirror file:///cdrom --security-mirror none --mount-cdrom
+Default: --mirror file:///media/cdrom --security-mirror none --mount-cdrom
# Only used for preseeding arguments to ltsp-client-builder.
Description: arguments for ltsp-build-client:
this option is meant to be used with debconf preseeding.
results in the error:
in_target: I: Retrieving Release
in_target: I: Retrieving Release.gpg
in_target: E: Failed getting release signature file file:///media/cdrom/dists/squeeze/Release.gpg
I hope this helps tracking the bug(s) down.
Best regards,
Andi
-- System Information:
Debian Release: squeeze/sid
APT prefers testing
APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Information forwarded
to debian-bugs-dist@lists.debian.org, LTSP Debian/Ubuntu Maintainers <pkg-ltsp-devel@lists.alioth.debian.org>:
Bug#589646; Package ltsp-server.
(Tue, 20 Jul 2010 21:39:06 GMT) (full text, mbox, link).
Acknowledgement sent
to Vagrant Cascadian <vagrant@freegeek.org>:
Extra info received and forwarded to list. Copy sent to LTSP Debian/Ubuntu Maintainers <pkg-ltsp-devel@lists.alioth.debian.org>.
(Tue, 20 Jul 2010 21:39:06 GMT) (full text, mbox, link).
Message #10 received at 589646@bugs.debian.org (full text, mbox, reply):
On Mon, Jul 19, 2010 at 04:34:15PM +0200, Andreas B. Mundt wrote:
> in_target: mount: can't find /cdrom in /etc/fstab or /etc/mtab
>
> I managed to get a bit further by applying the following patch to
> ltsp-5.2.3/server/plugins/ltsp-build-client/Debian/099-mount-cdrom:
>
> --- 099-mount-cdrom.orig 2010-07-19 15:53:39.000000000 +0200
> +++ 099-mount-cdrom 2010-07-19 15:54:01.000000000 +0200
> @@ -11,12 +11,12 @@
> ;;
> before-install)
> if [ "$MOUNT_CDROM" = "true" ]; then
> - mount /cdrom
> + mount /media/cdrom
> fi
> ;;
> finalization)
> if [ "$MOUNT_CDROM" = "true" ]; then
> - umount /cdrom
> + umount /media/cdrom
> fi
> ;;
> esac
apparently this was recently changed in debian-installer, though sounds like
/media/cdrom has been viable at least since lenny, so this sounds ok to apply.
> The mount works now, but the next error reported is:
>
> in_target: I: Retrieving Release
> in_target: E: Failed getting release file file:///cdrom/dists/squeeze/Release
>
> Applying the following patch to tsp-5.2.3/debian/ltsp-client-builder.templates
>
> --- ltsp-client-builder.templates.orig 2010-07-19 16:19:54.000000000 +0200
> +++ ltsp-client-builder.templates 2010-07-19 14:33:00.000000000 +0200
> @@ -29,7 +29,7 @@
>
> Template: ltsp-client-builder/build-client-opts
> Type: string
> -Default: --mirror file:///cdrom --security-mirror none --mount-cdrom
> +Default: --mirror file:///media/cdrom --security-mirror none --mount-cdrom
> # Only used for preseeding arguments to ltsp-client-builder.
> Description: arguments for ltsp-build-client:
> this option is meant to be used with debconf preseeding.
almost...
> results in the error:
>
> in_target: I: Retrieving Release
> in_target: I: Retrieving Release.gpg
> in_target: E: Failed getting release signature file file:///media/cdrom/dists/squeeze/Release.gpg
you'd also need to add --accept-unsigned-packages to the default commandline
arguments:
--- ltsp-client-builder.templates.orig 2010-07-19 16:19:54.000000000 +0200
+++ ltsp-client-builder.templates 2010-07-19 14:33:00.000000000 +0200
@@ -29,7 +29,7 @@
Template: ltsp-client-builder/build-client-opts
Type: string
-Default: --mirror file:///cdrom --security-mirror none --mount-cdrom
+Default: --mirror file:///media/cdrom --security-mirror none --mount-cdrom --accept-unsigned-packages
# Only used for preseeding arguments to ltsp-client-builder.
Description: arguments for ltsp-build-client:
this option is meant to be used with debconf preseeding.
i'm not aware of CD images that actually have signed release files, so i guess
this isn't any more evil than installing from cd ever is...
> I hope this helps tracking the bug(s) down.
sure does!
if i don't get to by tomorrow, i might not get a chance to fix it till next
week as i'll be traveling on and off. feel free to NMU (or maybe another
pkg-ltsp team member?) if you need it fixed sooner.
live well,
vagrant
Reply sent
to Petter Reinholdtsen <pere@debian.org>:
You have taken responsibility.
(Wed, 21 Jul 2010 20:57:17 GMT) (full text, mbox, link).
Notification sent
to "Andreas B. Mundt" <andi.mundt@web.de>:
Bug acknowledged by developer.
(Wed, 21 Jul 2010 20:57:17 GMT) (full text, mbox, link).
Message #15 received at 589646-close@bugs.debian.org (full text, mbox, reply):
Source: ltsp
Source-Version: 5.2.3-2
We believe that the bug you reported is fixed in the latest version of
ltsp, which is due to be installed in the Debian FTP archive:
ltsp-client-builder_5.2.3-2_all.udeb
to main/l/ltsp/ltsp-client-builder_5.2.3-2_all.udeb
ltsp-client-core_5.2.3-2_i386.deb
to main/l/ltsp/ltsp-client-core_5.2.3-2_i386.deb
ltsp-client_5.2.3-2_i386.deb
to main/l/ltsp/ltsp-client_5.2.3-2_i386.deb
ltsp-server-standalone_5.2.3-2_all.deb
to main/l/ltsp/ltsp-server-standalone_5.2.3-2_all.deb
ltsp-server_5.2.3-2_all.deb
to main/l/ltsp/ltsp-server_5.2.3-2_all.deb
ltsp_5.2.3-2.debian.tar.gz
to main/l/ltsp/ltsp_5.2.3-2.debian.tar.gz
ltsp_5.2.3-2.dsc
to main/l/ltsp/ltsp_5.2.3-2.dsc
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 589646@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Petter Reinholdtsen <pere@debian.org> (supplier of updated ltsp package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 21 Jul 2010 21:44:40 +0200
Source: ltsp
Binary: ltsp-server ltsp-server-standalone ltsp-client-core ltsp-client ltsp-client-builder
Architecture: source all i386
Version: 5.2.3-2
Distribution: unstable
Urgency: high
Maintainer: LTSP Debian/Ubuntu Maintainers <pkg-ltsp-devel@lists.alioth.debian.org>
Changed-By: Petter Reinholdtsen <pere@debian.org>
Description:
ltsp-client - complete LTSP client environment
ltsp-client-builder - build an LTSP environment in the installer target (udeb)
ltsp-client-core - basic LTSP client environment
ltsp-server - basic LTSP server environment
ltsp-server-standalone - complete LTSP server environment
Closes: 589646 589820
Changes:
ltsp (5.2.3-2) unstable; urgency=high
.
* Change /cdrom to /media/cdrom, to work with the new d-i paths
(Closes: #589646). Using urgency=high to fix this RC bug.
* Disable package signature checking when installing from CD using
the ltsp-client-builder udeb.
* Use sleep 1 instead of sleep 0.1 to work with busybox
(Closes: 589820).
Checksums-Sha1:
51c608bb4642dc2b04c0ecdba4377f02c41efd11 1548 ltsp_5.2.3-2.dsc
8775fb7ef50dc960126d48a029cfc896e04dffe7 76953 ltsp_5.2.3-2.debian.tar.gz
c35ccc8557cb5b34db1c8927a7fc6aa729b2f9b6 225270 ltsp-server_5.2.3-2_all.deb
8e898d7dcd9049f093ebabb2b3b2ff386da84994 128836 ltsp-server-standalone_5.2.3-2_all.deb
c8fe59c0aa4bab55f4eaba4eaf897afabba67c3e 9332 ltsp-client-builder_5.2.3-2_all.udeb
db847f72626612a2987016d2974f68462fdf59a5 198330 ltsp-client-core_5.2.3-2_i386.deb
d92731f84cd8507175c615433b321d417d218a20 127996 ltsp-client_5.2.3-2_i386.deb
Checksums-Sha256:
17e05baa7fdaa658677f67ba4ba271b9d6fc2ac00f81ad86a89de4dfa95f94b0 1548 ltsp_5.2.3-2.dsc
ef69960df954c11bab2040d43df782669203c4ae907bcadf6c81a0d968caca2f 76953 ltsp_5.2.3-2.debian.tar.gz
539e2f1422aa04ceaf7a1c3827503948adb893fe9d4f5ab6d7cebf82f39013fb 225270 ltsp-server_5.2.3-2_all.deb
5e9eacdd57c91c8e77c96801cb7d7afe7ac3cde3cdaa5e8ac1567e2287b2b0b5 128836 ltsp-server-standalone_5.2.3-2_all.deb
181dd53affe970afdda80239d21a9962e32effb3014d083549edf613d04c8148 9332 ltsp-client-builder_5.2.3-2_all.udeb
8098a22c67d7c5d4b52a947c9bf0c9521f96f113b6166420210ea8811da730a8 198330 ltsp-client-core_5.2.3-2_i386.deb
8e3c2e7e7ad6ceb403d2a115b5c768c73056e95c5edd3f0f77bce347e431d8cb 127996 ltsp-client_5.2.3-2_i386.deb
Files:
92663d0931124009864d340030358350 1548 misc extra ltsp_5.2.3-2.dsc
a7434e59add5618dce8c0aa909e80055 76953 misc extra ltsp_5.2.3-2.debian.tar.gz
6aef8a466f8b960303fc19e3f67c5569 225270 misc extra ltsp-server_5.2.3-2_all.deb
c17fc9524cd8d335ae6c30ed31940337 128836 misc extra ltsp-server-standalone_5.2.3-2_all.deb
80ca32a7defe2c90549b389786572218 9332 debian-installer extra ltsp-client-builder_5.2.3-2_all.udeb
05066dd88f2aa640a2d93591519e6dd2 198330 misc extra ltsp-client-core_5.2.3-2_i386.deb
cae3c6c852689f3fba2c25445c336214 127996 misc extra ltsp-client_5.2.3-2_i386.deb
Package-Type: udeb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iD8DBQFMR1jF20zMSyow1ykRAv5jAJ9xz69yuqoXzFR+pYjjq9+jK2K29ACeLRVk
4w87vRP1pPVNroVKteLT0qc=
=dntW
-----END PGP SIGNATURE-----
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Tue, 24 Aug 2010 07:33:12 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Sat Jul 1 13:35:42 2023;
Machine Name:
bembo
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.