Processing of choose-mirror_2.63_i386.changes

2015-05-11 Thread Debian FTP Masters
choose-mirror_2.63_i386.changes uploaded successfully to ftp-master.debian.org
along with the files:
  choose-mirror_2.63.dsc
  choose-mirror_2.63.tar.xz
  choose-mirror_2.63_all.udeb
  choose-mirror-bin_2.63_i386.udeb

Greetings,

Your Debian queue daemon (running on host coccia.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrhls-gq...@coccia.debian.org




Processing of choose-mirror_2.63_i386.changes

2015-05-11 Thread Debian FTP Masters
choose-mirror_2.63_i386.changes uploaded successfully to localhost
along with the files:
  choose-mirror_2.63.dsc
  choose-mirror_2.63.tar.xz
  choose-mirror_2.63_all.udeb
  choose-mirror-bin_2.63_i386.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrhlc-00055b...@franck.debian.org



Bug#775120: task-mate-desktop: Should install mate-system-tools

2015-05-11 Thread Samuel Thibault
Mike Gabriel, le Mon 11 May 2015 03:27:17 +, a écrit :
 * What exactly did you do (or not do) that was effective (or
   ineffective)?
 
  Once the system boots, after lightdm, I want to change password, set
 the date,
  network, etc. through a GUI.r
 
 * What was the outcome of this action?
 
  No item appears for this. I only can use CLI tools.
 
  Fix: add mate-system-tools in installed packages.
 
 Looks to me that mate-desktop-environment should pull it instead?
 
 What's your stance on this?
 
 Furthermore, mate-system-tools will be deprecated for MATE 1.10.

What replaces it?  Does MATE not provide anything to accomplish those
tasks?

Samuel


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150511073733.gy3...@type.youpi.perso.aquilenet.fr



Bug#418519: Layout example

2015-05-11 Thread Vincas Dargis
I've just remembered that this wishlist exists... Here I've copied our
server's current layout as motivational example:

$ lsblk
NAME MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda8:00 186.3G  0 disk
└─sda1 8:10 186.3G  0 part
  ├─vg_system-lv_root (dm-0) 254:00 168.7G  0 lvm  /
  └─vg_system-lv_swap (dm-1) 254:10  17.6G  0 lvm  [SWAP]
sdb8:16   0 2T  0 disk
├─vg_data-lv_wal (dm-2)  254:2020G  0 lvm  /media/wal
└─vg_data-lv_data (dm-3) 254:30 912.6G  0 lvm  /media/postgresql

There *must* be sba1, because before that partition (which is LVM PV) there
is free space for GRUB to be installed.

For other drive, sdb, there is no need to have sdb1 partition, it's
directly a LVM PV, which can be resized more easily compared to being on a
partition. But d-i does not allow users to do that in preseed.

sdb drive setup is currenly done with post-installation script in our
case...


Bug#783548: marked as done (choose-mirror: lists releases that don't include this arch)

2015-05-11 Thread Debian Bug Tracking System
Your message dated Mon, 11 May 2015 06:49:22 +
with message-id e1yrhwk-0005yv...@franck.debian.org
and subject line Bug#783548: fixed in choose-mirror 2.63
has caused the Debian Bug report #783548,
regarding choose-mirror: lists releases that don't include this arch
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
783548: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783548
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: choose-mirror
Version: 2.62
Severity: wishlist
Tags: patch
User: debian-...@lists.debian.org
Usertags: jessie kfreebsd

Hi,

When installing kfreebsd or hurd in Expert mode, choose-mirror offers to
install jessie - stable and stretch - testing even though the
architecture being installed isn't part of those releases.

I've attached a patch that adds support for the Architectures: header,
to not mention a release if it doesn't include the current arch.

Thanks.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'oldstable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 9.0-2-amd64-xenhvm-ipsec
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/choose-mirror.c b/choose-mirror.c
index 65885f6..b7d4019 100644
--- a/choose-mirror.c
+++ b/choose-mirror.c
@@ -300,9 +300,9 @@ static int get_release(struct release_t *release, const char *name) {
 	char *command;
 	FILE *f = NULL;
 	char *wget_options, *hostname, *directory;
-	char line[80];
+	char line[BUFFER_LENGTH];
 	char *p;
-	char buf[SUITE_LENGTH];
+	char buf[BUFFER_LENGTH];
 
 	hostname = add_protocol(hostname);
 	debconf_get(debconf, hostname);
@@ -321,7 +321,7 @@ static int get_release(struct release_t *release, const char *name) {
 	}
 
 	wget_options = get_wget_options();
-	command = xasprintf(wget %s %s://%s%s/dists/%s/Release -O - | grep -E '^(Suite|Codename):',
+	command = xasprintf(wget %s %s://%s%s/dists/%s/Release -O - | grep -E '^(Suite|Codename|Architectures):',
 			wget_options, protocol, hostname, directory, name);
 	di_log(DI_LOG_LEVEL_DEBUG, command: %s, command);
 	f = popen(command, r);
@@ -337,12 +337,14 @@ static int get_release(struct release_t *release, const char *name) {
 			if (line[strlen(line) - 1] == '\n')
 line[strlen(line) - 1] = '\0';
 			if ((value = strstr(line, : )) != NULL) {
-strncpy(buf, value + 2, SUITE_LENGTH - 1);
-buf[SUITE_LENGTH - 1] = '\0';
+strncpy(buf, value + 2, BUFFER_LENGTH - 1);
+buf[BUFFER_LENGTH - 1] = '\0';
 if (strncmp(line, Codename:, 9) == 0)
 	release-name = strdup(buf);
 if (strncmp(line, Suite:, 6) == 0)
 	release-suite = strdup(buf);
+if (strncmp(line, Architectures:, 14) == 0)
+	release-archs = strdup(buf);
 			}
 		}
 		if (release-name != NULL  strcmp(release-name, name) == 0)
@@ -354,6 +356,14 @@ static int get_release(struct release_t *release, const char *name) {
 		!(release-status  IS_VALID))
 			log_invalid_release(name, Suite or Codename);
 
+		/* Does the release include this arch? */
+		if (release-archs != NULL  strstr(release-archs, ARCH_TEXT) == NULL) {
+			/* No:  disregard this release */
+			log_invalid_release(name, Architectures);
+			release-status = ~IS_VALID;
+			release-name = NULL;
+		}
+
 		/* Cross-validate the Release file */
 		if (release-status  IS_VALID)
 			if (! cross_validate_release(release))
diff --git a/mirrors.h b/mirrors.h
index e592b7a..f73aefb 100644
--- a/mirrors.h
+++ b/mirrors.h
@@ -17,6 +17,12 @@ struct mirror_t {
  */
 #define MANUAL_ENTRY manual
 
+/*
+ * Allow to read the full Architectures: line from a Release file,
+ * which is up to 123 bytes long at time of writing.
+ */
+#define BUFFER_LENGTH 256
+
 #define SUITE_LENGTH 32
 
 /* Stack of suites */
@@ -43,6 +49,7 @@ static const char suites[][SUITE_LENGTH] = {
 struct release_t {
 	char *name;
 	char *suite;
+	char *archs;
 	int status;
 };
 
---End Message---
---BeginMessage---
Source: choose-mirror
Source-Version: 2.63

We believe that the bug you reported is fixed in the latest version of
choose-mirror, which is due to be installed in the Debian FTP archive.

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 783...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Perrier bubu...@debian.org (supplier of updated choose-mirror 
package)


choose-mirror_2.63_i386.changes ACCEPTED into unstable

2015-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 May 2015 07:26:02 +0200
Source: choose-mirror
Binary: choose-mirror choose-mirror-bin
Architecture: source all i386
Version: 2.63
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description:
 choose-mirror - Choose mirror to install from (menu item) (udeb)
 choose-mirror-bin - Choose mirror to install from (program) (udeb)
Closes: 783548
Changes:
 choose-mirror (2.63) unstable; urgency=medium
 .
   [ Steven Chamberlain ]
   * Only list releases the current arch is included in.  For example,
 don't display a jessie release for kfreebsd-* or hurd.
 (Closes: #783548)
Checksums-Sha1:
 1ff62ab8f620046a812f45603c14f9bf934980b3 1840 choose-mirror_2.63.dsc
 eb82deda629fae418257c9efa489bda82cf74da6 201124 choose-mirror_2.63.tar.xz
 67be405651dcb888d5edb77089823b5b3b33b2c7 1070 choose-mirror_2.63_all.udeb
 cb03cb23cad5d0f48a8d101f8d13f52616862f45 246446 
choose-mirror-bin_2.63_i386.udeb
Checksums-Sha256:
 27ba8df48257e75a1b4452eeb1929821cfdc997913a849ead48943b02cbd5ec6 1840 
choose-mirror_2.63.dsc
 df46bc74d996511eac9817230dadb92f021a2688c17b6823d4bf6246e4e88978 201124 
choose-mirror_2.63.tar.xz
 dfd9692fed4cf50e7ef76955b46b75c99f9127dc20711625331ca782cb9d852c 1070 
choose-mirror_2.63_all.udeb
 5fe104c86f031f17d3cdadb9e798c7c269051a7f4eed829001ec3c4d4dfa8187 246446 
choose-mirror-bin_2.63_i386.udeb
Files:
 1f81a63ff192f54c2bf5707b59f07220 1840 debian-installer extra 
choose-mirror_2.63.dsc
 f4700ba2d2f11180cd09462d277c3926 201124 debian-installer extra 
choose-mirror_2.63.tar.xz
 2f78766fba783933035b9ce9db32042c 1070 debian-installer extra 
choose-mirror_2.63_all.udeb
 043f68756fd588e6d47b3043a3667aa9 246446 debian-installer extra 
choose-mirror-bin_2.63_i386.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVUE3rAAoJEIcvcCxNbiWolg8P/A+Zi0g51RJondn7aCm95kE6
uJpsfPr8KQBt6yztvMhdCIvUsauOOsoriE8HZrVKfic7wucTLMnJ5rs8K8zY5MDL
fRzNp2lJxQ8hG9IjWUkHPx0pbA3WYayB9+i6ekC2XXtHklur9bEcnAsn1AtWhzQ1
DIz/N8qkXAhh/nEsraigtNwB+TjEHu+1c0hp9a/9W6gHbGmf9T+HLQJiP0L8Tyh4
T/lBnAc37/UYmz9ntHXhEKr3twGtFu7sLBvOGdDcn3dPkeRIOzuLLqZq9I38ElB4
pWN2NdlNa7VuXZ4DpBxrVgtU4++XL3kjoyOWct0h1sbf5L67Q7vwlKApeqEs5yIf
1cS9MYk6sLcgYoGyUMn1S3KiuHTNpm2AoQkmucDxZuGkeOVeTuWYVAlT0CtyixDb
FJ0TX87uapn05rMouQlxUUPlXoigauaud6JGIEWrVbIQg1dlAf9UEwfIKyGwm25K
cHZsBIKxSiUz4yvQGH1kpYdSZjnsH7/a12e3j7mkD/I/Tgu7ASgcYdO7IXLrIg7F
FG2K/H61Yo5WfK/WNGc8LTHFLa0yRXFBUBYOFnK2rkNs3xQVn1b7HmoXCnVxWePT
OR0JGyPC+Gj/usZSu+a6cOcWU5efdc6VG2KGAMY8867c3I4rSbfGrTQTtZN6+PoR
1jw080jAdPhxKDhMA5Ng
=+afY
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrhwk-0005yk...@franck.debian.org



Processing of apt-setup_0.98_i386.changes

2015-05-11 Thread Debian FTP Masters
apt-setup_0.98_i386.changes uploaded successfully to localhost
along with the files:
  apt-setup_0.98.dsc
  apt-setup_0.98.tar.xz
  apt-setup-udeb_0.98_i386.udeb
  apt-mirror-setup_0.98_all.udeb
  apt-cdrom-setup_0.98_all.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrjmu-0004q1...@franck.debian.org



Processing of debootstrap_1.0.68_i386.changes

2015-05-11 Thread Debian FTP Masters
debootstrap_1.0.68_i386.changes uploaded successfully to localhost
along with the files:
  debootstrap_1.0.68.dsc
  debootstrap_1.0.68.tar.gz
  debootstrap_1.0.68_all.deb
  debootstrap-udeb_1.0.68_all.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrjmu-0004pv...@franck.debian.org



apt-setup_0.98_i386.changes ACCEPTED into unstable

2015-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 May 2015 08:38:36 +0200
Source: apt-setup
Binary: apt-setup-udeb apt-mirror-setup apt-cdrom-setup
Architecture: source i386 all
Version: 1:0.98
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description:
 apt-cdrom-setup - set up a CD in sources.list (udeb)
 apt-mirror-setup - set up a mirror in sources.list (udeb)
 apt-setup-udeb - Configure apt (udeb)
Changes:
 apt-setup (1:0.98) unstable; urgency=medium
 .
   [ Updated translations ]
   * Tamil (ta.po) by Dr.T.Vasudevan
Checksums-Sha1:
 e1ec6acf6c9b051ded8ab92b5a1987784787c2c2 1768 apt-setup_0.98.dsc
 778521fa6e5e19630f1fc5e43956db4c569b0742 243116 apt-setup_0.98.tar.xz
 2266893afef9884ab7e419356b49b6e6aa9e2e6a 82040 apt-setup-udeb_0.98_i386.udeb
 bd2e651298b095fc6e6652e313fe827de022f97d 84006 apt-mirror-setup_0.98_all.udeb
 c479066fc9bf8e722786cb60f544c4afad062c63 119412 apt-cdrom-setup_0.98_all.udeb
Checksums-Sha256:
 58d88fa77b5f50e5a7e052856f111e6211c7f275c77e777cc715a54d109de0c1 1768 
apt-setup_0.98.dsc
 6630509ea4e4db0ea063d6d60659729020e7465c7bbdca68d2441ea9cabdb1f4 243116 
apt-setup_0.98.tar.xz
 5a3e6fa38d61cbb3a7b3ce855e697d32299f305c05a3526f089121dd339ce303 82040 
apt-setup-udeb_0.98_i386.udeb
 d353d1935869e07d94a781456a9d8c4127a08d3f505f54d1491b58a7a1f5403b 84006 
apt-mirror-setup_0.98_all.udeb
 19af667003e8354ad27b53798900e8c887a28422178189eb96bb8b2157a0cd70 119412 
apt-cdrom-setup_0.98_all.udeb
Files:
 7867e4b39bd27d2a5e62c103e1f640be 1768 debian-installer extra apt-setup_0.98.dsc
 54237cdc3fc53209f4c18c20cd642506 243116 debian-installer extra 
apt-setup_0.98.tar.xz
 87b251e09a8e27e8950291d8b9cec18e 82040 debian-installer standard 
apt-setup-udeb_0.98_i386.udeb
 e03bbdeb418954799d50007c596ea72a 84006 debian-installer extra 
apt-mirror-setup_0.98_all.udeb
 2d35db020cebf5e376fb8d8dbd7bac76 119412 debian-installer extra 
apt-cdrom-setup_0.98_all.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVUHHwAAoJEIcvcCxNbiWo3o0P/j8FNPQTdmcQ3ZvUSrv35Jbp
dMTnB8mowCgwegp6zp1sqagcAw84w8LG+3sIemGPQuiEAXqQGQ2bud12buoIsVw+
GUarFm9BSdxt0MNOtHoTzmjmC5Rw5zXIvdHcjkgIe6ecE+10NvGpqRUGWcV6wE/S
S04ys7nnF0Q9+6UuOQCUqg3EHk33NwBWQdFU8TOMMWGlpa3HBktUzBmkfSUPJwEY
xAWqIx99tZbuJsPvFOzKFJ+jBGWx7KOpn3/sBcWX2GwBMUjQs03+Foqqh6/Neo7u
qo0wiuq9A2R3hBPZP0n9USXAe5wZe1AjUzNPoi6ZoVnZLtjL7em68R5RUuIG/jtR
lIIoawsUaFiXZ5+k7BYmjh0QN7NU2aY1e1TKVXm5VIqaqBniksALvjxGbGXuuk9b
GnV6PkGWCJHZNLRTuyom8M880818D41ONxV3kj1ox4/DopRWmSKhpgTQdsrzJXSt
3T0q6Ex1zgttgA7rFl6l/sbuAo0yK4XwqPBncA6+9NNpMrM3/kkWey7vwcfcLtI2
6M/aiM712ZaKr7HJChgIXLvWjOsvaPbhrQ381jix2IcsMrQRZCSjS8aOWZXvXVBC
olNmnHPKqUqeMhS1p0+Yfu6p2F/r4bTjrqVRsOnbIkLlqdcSvFDbu0U0PkmkhoEL
w4J+OplNM4y1fhY+th3P
=9QZM
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrkl5-0006uc...@franck.debian.org



debootstrap_1.0.68_i386.changes ACCEPTED into unstable

2015-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 May 2015 07:46:19 +0200
Source: debootstrap
Binary: debootstrap debootstrap-udeb
Architecture: source all
Version: 1.0.68
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description:
 debootstrap - Bootstrap a basic Debian system
 debootstrap-udeb - Bootstrap the Debian system (udeb)
Closes: 784927
Changes:
 debootstrap (1.0.68) unstable; urgency=medium
 .
   [ Steven Chamberlain ]
   * Support the jessie-kfreebsd suite, by using the same script as
 jessie (a symlink to sid) (Closes: #784927).
Checksums-Sha1:
 a71fb0c8001f95ac85c5850e9215b0c08c709fb2 1775 debootstrap_1.0.68.dsc
 dbe2bd11a7fa7741fff348fc2eb483c2c3de40fb 61376 debootstrap_1.0.68.tar.gz
 4456f440ca3f8f081865549262930128d5415402 63432 debootstrap_1.0.68_all.deb
 f1de96e86ccf3420b78649a0d81381882778f5fd 18280 debootstrap-udeb_1.0.68_all.udeb
Checksums-Sha256:
 8be25c5f718d5e27614fcf3e589b0adcafb880ecfb8ab95323eb7c44993684a3 1775 
debootstrap_1.0.68.dsc
 1e59527019949a4dc58ba8cc7b6e92492eb4c7cba0a5bfc92fcf980b774bba7a 61376 
debootstrap_1.0.68.tar.gz
 0e0b6c7e7580b706c3e235aed8d3aaaef46239a16e26a83ef23c2ae9df7ca85d 63432 
debootstrap_1.0.68_all.deb
 fed8b808be83191333257e724bd8d8dcf4c78a28b7dccc25f26111cda0f4081b 18280 
debootstrap-udeb_1.0.68_all.udeb
Files:
 b8e18d72b63a2cf3e0191ffdab9f5d03 1775 admin extra debootstrap_1.0.68.dsc
 1e636e702dd9c1c15abfcb80e09843f1 61376 admin extra debootstrap_1.0.68.tar.gz
 0f0ce1195a08f2809673d8e867fa61e6 63432 admin extra debootstrap_1.0.68_all.deb
 b7e98013966e595ba50230f60efe7cbe 18280 debian-installer extra 
debootstrap-udeb_1.0.68_all.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVUHIcAAoJEIcvcCxNbiWomYwP/RI/dad/43qI7QbZEyhUWEqq
ZLi5jhuGXfPpwmENkfM0jUmK5Vu3GhGhVRc/bBLUcsi2+xAHk6DuotmE4TGtjBJ/
1lwHz/LOcIze+4ygyErXB8AukwRIMcnMW1+mb1b/VEnWYP6O3RNm9zN1M0vUHJNu
FvEOdOr4mDrSsxEnv5hBsL8MEmsICCogaqs9lGtrxGoeZVb+6C8CXJP5gNMToCHO
u/R53J5aotIitHGiAnLpLHgb9Y7XZYPtyFUjpistzjIShnhFZyb8tqKnp0laSWxc
cFcadYOFG5iyvupYvLuiOD1NG7M1uKQm1GHgT15J/y7qbz9q2lms9X996NRUDJDe
LpcrfwjvYkwQiyXaNst8GJzKKxBBBiTT4i7XFBcXLF28lcIAE2zYf+uolkqmFJUi
ucG+hkH6ooogoxIEKTkPXBJzTuAQVfhtu4cKDBNaGGnmUVEWTM6Q19Efu67B2Fbc
QB9coW/g6Tlg1eXCXiQhBNUVIbw+n+PoDdDf6O+/tZ7X0HpmCCTpuJGa5ML47Mek
YONUsYhJ5OMZF6gkdtu+yKaepTweeyDqKA7YKiag0Gpom4MfRXQyOoYl/82LTL7D
ayxn+irrG0zVN8lOXdaecknGFIEF4gIRSrMpb3wXza58V9BuZvm3aM5mKH/JZGi9
ikfNqnrfWrcen5WPYD6m
=80IV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrkm2-0006ug...@franck.debian.org



Processing of debootstrap_1.0.68_i386.changes

2015-05-11 Thread Debian FTP Masters
debootstrap_1.0.68_i386.changes uploaded successfully to ftp-master.debian.org
along with the files:
  debootstrap_1.0.68.dsc
  debootstrap_1.0.68.tar.gz
  debootstrap_1.0.68_all.deb
  debootstrap-udeb_1.0.68_all.udeb

Greetings,

Your Debian queue daemon (running on host coccia.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrjlh-0007sg...@coccia.debian.org



Processing of apt-setup_0.98_i386.changes

2015-05-11 Thread Debian FTP Masters
apt-setup_0.98_i386.changes uploaded successfully to ftp-master.debian.org
along with the files:
  apt-setup_0.98.dsc
  apt-setup_0.98.tar.xz
  apt-setup-udeb_0.98_i386.udeb
  apt-mirror-setup_0.98_all.udeb
  apt-cdrom-setup_0.98_all.udeb

Greetings,

Your Debian queue daemon (running on host coccia.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrjld-0007sc...@coccia.debian.org



Bug#784927: marked as done (debootstrap: doesn't know jessie-kfreebsd suite)

2015-05-11 Thread Debian Bug Tracking System
Your message dated Mon, 11 May 2015 09:50:30 +
with message-id e1yrkm2-0006uq...@franck.debian.org
and subject line Bug#784927: fixed in debootstrap 1.0.68
has caused the Debian Bug report #784927,
regarding debootstrap: doesn't know jessie-kfreebsd suite
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
784927: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784927
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: debootstrap
Version: 1.0.67
Severity: important
Tags: patch pending
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

debootstrap in wheezy and sid doesn't know the new jessie-kfreebsd
suite, which prevents the installer or standalone debootstraps from
installing it.

The jessie-kfreebsd script can be the same as jessie which is
a symlink to said.  Patched in the jessie-kfreebsd Git branch:

https://anonscm.debian.org/cgit/d-i/debootstrap.git/commit/?h=jessie-kfreebsdid=045a2e63427caf5ad5f75525ff804bb7eabdc2d8

Thanks.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 9.0-2-amd64-xenhvm-ipsec
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages debootstrap depends on:
ii  wget  1.14-4

Versions of packages debootstrap recommends:
ii  debian-archive-keyring  2014.3
ii  gnupg   1.4.18-6

debootstrap suggests no packages.

-- no debconf information
---End Message---
---BeginMessage---
Source: debootstrap
Source-Version: 1.0.68

We believe that the bug you reported is fixed in the latest version of
debootstrap, which is due to be installed in the Debian FTP archive.

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 784...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Perrier bubu...@debian.org (supplier of updated debootstrap 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 May 2015 07:46:19 +0200
Source: debootstrap
Binary: debootstrap debootstrap-udeb
Architecture: source all
Version: 1.0.68
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description:
 debootstrap - Bootstrap a basic Debian system
 debootstrap-udeb - Bootstrap the Debian system (udeb)
Closes: 784927
Changes:
 debootstrap (1.0.68) unstable; urgency=medium
 .
   [ Steven Chamberlain ]
   * Support the jessie-kfreebsd suite, by using the same script as
 jessie (a symlink to sid) (Closes: #784927).
Checksums-Sha1:
 a71fb0c8001f95ac85c5850e9215b0c08c709fb2 1775 debootstrap_1.0.68.dsc
 dbe2bd11a7fa7741fff348fc2eb483c2c3de40fb 61376 debootstrap_1.0.68.tar.gz
 4456f440ca3f8f081865549262930128d5415402 63432 debootstrap_1.0.68_all.deb
 f1de96e86ccf3420b78649a0d81381882778f5fd 18280 debootstrap-udeb_1.0.68_all.udeb
Checksums-Sha256:
 8be25c5f718d5e27614fcf3e589b0adcafb880ecfb8ab95323eb7c44993684a3 1775 
debootstrap_1.0.68.dsc
 1e59527019949a4dc58ba8cc7b6e92492eb4c7cba0a5bfc92fcf980b774bba7a 61376 
debootstrap_1.0.68.tar.gz
 0e0b6c7e7580b706c3e235aed8d3aaaef46239a16e26a83ef23c2ae9df7ca85d 63432 
debootstrap_1.0.68_all.deb
 fed8b808be83191333257e724bd8d8dcf4c78a28b7dccc25f26111cda0f4081b 18280 
debootstrap-udeb_1.0.68_all.udeb
Files:
 b8e18d72b63a2cf3e0191ffdab9f5d03 1775 admin extra debootstrap_1.0.68.dsc
 1e636e702dd9c1c15abfcb80e09843f1 61376 admin extra debootstrap_1.0.68.tar.gz
 0f0ce1195a08f2809673d8e867fa61e6 63432 admin extra debootstrap_1.0.68_all.deb
 b7e98013966e595ba50230f60efe7cbe 18280 debian-installer extra 
debootstrap-udeb_1.0.68_all.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVUHIcAAoJEIcvcCxNbiWomYwP/RI/dad/43qI7QbZEyhUWEqq
ZLi5jhuGXfPpwmENkfM0jUmK5Vu3GhGhVRc/bBLUcsi2+xAHk6DuotmE4TGtjBJ/
1lwHz/LOcIze+4ygyErXB8AukwRIMcnMW1+mb1b/VEnWYP6O3RNm9zN1M0vUHJNu
FvEOdOr4mDrSsxEnv5hBsL8MEmsICCogaqs9lGtrxGoeZVb+6C8CXJP5gNMToCHO
u/R53J5aotIitHGiAnLpLHgb9Y7XZYPtyFUjpistzjIShnhFZyb8tqKnp0laSWxc
cFcadYOFG5iyvupYvLuiOD1NG7M1uKQm1GHgT15J/y7qbz9q2lms9X996NRUDJDe
LpcrfwjvYkwQiyXaNst8GJzKKxBBBiTT4i7XFBcXLF28lcIAE2zYf+uolkqmFJUi

Bug#775120: task-mate-desktop: Should install mate-system-tools

2015-05-11 Thread MENGUAL Jean-Philippe

Le 11/05/2015 09:37, Samuel Thibault a écrit :

Mike Gabriel, le Mon 11 May 2015 03:27:17 +, a écrit :

* What exactly did you do (or not do) that was effective (or
  ineffective)?

Once the system boots, after lightdm, I want to change password, set

the date,

network, etc. through a GUI.r

* What was the outcome of this action?

No item appears for this. I only can use CLI tools.

Fix: add mate-system-tools in installed packages.

Looks to me that mate-desktop-environment should pull it instead?

What's your stance on this?

Furthermore, mate-system-tools will be deprecated for MATE 1.10.

What replaces it?  Does MATE not provide anything to accomplish those
tasks?
In Debian Jessie, no. Not adding the package means the user cannot 
change his passwd, network, etc through GUI. I don't know what will be 
with 3.10, but in stable, this package is needed.


Regards,


Samuel




--
Jean-Philippe MENGUAL

HYPRA, progressons ensemble

Tél.: 01 84 73 06 61

Mail: cont...@hypra.fr

Site Web: http://hypra.fr


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5550f616.4080...@accelibreinfo.eu



Processing of debootstrap_1.0.67+kbsd8u1_kfreebsd-amd64.changes

2015-05-11 Thread Debian FTP Masters
debootstrap_1.0.67+kbsd8u1_kfreebsd-amd64.changes uploaded successfully to 
ftp-master.debian.org
along with the files:
  debootstrap_1.0.67+kbsd8u1.dsc
  debootstrap_1.0.67+kbsd8u1.tar.gz
  debootstrap_1.0.67+kbsd8u1_all.deb
  debootstrap-udeb_1.0.67+kbsd8u1_all.udeb

Greetings,

Your Debian queue daemon (running on host coccia.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrxdm-0003pg...@coccia.debian.org



Bug#785063: Installation Failed

2015-05-11 Thread Ricky Ritchey
Package: installation-reports

Boot method: DVD (On both laptop and desktop machines)Image
version:http://cdimage.debian.org/cdimage/jessie_di_rc3/amd64/iso-dvd/debian-jessie-DI-rc3-amd64-DVD-1.iso
(On both laptop and desktop machines)Date: 04/20/15 11:30 AM Pacific
Standard Time
Machine: Acer Aspire 5336-2460 laptopProcessor:Intel Celeron
925Memory:3 GBPartitions: df -Tl will do; the raw partition table is
preferred
Output of lspci -knn (or lspci -nn):
Base System Installation Checklist:[O] = OK, [E] = Error (please
elaborate below), [ ] = didn't try it
Initial boot:   [O]Detect network card:[O]Configure
network:  [O]Detect CD:  [O]Load installer modules:
[O]Detect hard drives: [O]Partition hard drives:  [O]Install base
system:[O]Clock/timezone setup:   [O]User/password setup:
[O]Install tasks:  [E]Install boot loader:[O]Overall
install:[O]
Installed:(Checked additional software to default selected software as
fallows) Kde/mail server/network server

Date: 04/21/15 2:00 PM  Pacific Standard Time
Machine: ASUS M2N-SLI Motherboard (homebuilt desktop
computer)Processor:AMD Phenon 95 Quad CoreMemory:4 GBPartitions: df
-Tl will do; the raw partition table is preferred
Output of lspci -knn (or lspci -nn):
Base System Installation Checklist:[O] = OK, [E] = Error (please
elaborate below), [ ] = didn't try it
Initial boot:   [O]Detect network card:[O]Configure
network:  [O]Detect CD:  [O]Load installer modules:
[O]Detect hard drives: [O]Partition hard drives:  [O]Install base
system:[O]Clock/timezone setup:   [O]User/password setup:
[O]Install tasks:  [E]Install boot loader:[O]Overall
install:[O]
Installed:(Checked additional software to default selected software as
fallows) Kde/mail server/network server/web server
Comments/Problems: Same results on both computers When it came to
loading software after selecting them, when it got to the end 30 to 45
minutes later,may be even longer, it said “installation failed”. When
I click on continue, it goes back to selecting the software. I
re-select the same software. It goes back in to loading the software
and a second or two later, it goes in to loading the grub to finish
the process. Both machines seems to work OK, but I thought it was
something you should be aware about.


Bug#785063: Installation Failed

2015-05-11 Thread Steve McIntyre
On Mon, May 11, 2015 at 04:52:37PM -0700, Ricky Ritchey wrote:
Package: installation-reports

Comments/Problems: Same results on both computers When it came to
loading software after selecting them, when it got to the end 30 to 45
minutes later,may be even longer, it said “installation failed”. When
I click on continue, it goes back to selecting the software. I
re-select the same software. It goes back in to loading the software
and a second or two later, it goes in to loading the grub to finish
the process. Both machines seems to work OK, but I thought it was
something you should be aware about.

Hi Ricky,

Thanks for your report!

On each machine, there should be the installer's log file in
/var/log/installer/syslog. If you could send them in to this bug
report too, we might be able to work out what's gone wrong on your
systems.

Cheers,

Steve

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
Support the Campaign for Audiovisual Free Expression: http://www.eff.org/cafe/


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150512000116.gq21...@einval.com



Processing of debootstrap_1.0.67+kbsd8u1_kfreebsd-amd64.changes

2015-05-11 Thread Debian FTP Masters
debootstrap_1.0.67+kbsd8u1_kfreebsd-amd64.changes uploaded successfully to 
localhost
along with the files:
  debootstrap_1.0.67+kbsd8u1.dsc
  debootstrap_1.0.67+kbsd8u1.tar.gz
  debootstrap_1.0.67+kbsd8u1_all.deb
  debootstrap-udeb_1.0.67+kbsd8u1_all.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrxgn-0004pf...@franck.debian.org



debootstrap_1.0.67+kbsd8u1_kfreebsd-amd64.changes REJECTED

2015-05-11 Thread Debian FTP Masters


ACL dm: not allowed to upload source package 'debootstrap'

===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yrxrl-0005cz...@franck.debian.org



Bug#775120: task-mate-desktop: Should install mate-system-tools

2015-05-11 Thread Mike Gabriel

Hi Jean-Philippe,

On  Mo 11 Mai 2015 20:33:58 CEST, MENGUAL Jean-Philippe wrote:


Le 11/05/2015 09:37, Samuel Thibault a écrit :

Mike Gabriel, le Mon 11 May 2015 03:27:17 +, a écrit :

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

Once the system boots, after lightdm, I want to change password, set

the date,

network, etc. through a GUI.r

   * What was the outcome of this action?

No item appears for this. I only can use CLI tools.

Fix: add mate-system-tools in installed packages.

Looks to me that mate-desktop-environment should pull it instead?

What's your stance on this?

Furthermore, mate-system-tools will be deprecated for MATE 1.10.

What replaces it?  Does MATE not provide anything to accomplish those
tasks?
In Debian Jessie, no. Not adding the package means the user cannot  
change his passwd, network, etc through GUI. I don't know what will  
be with 1.10, but in stable, this package is needed.


If the package is needed:

  $ sudo apt-get install mate-system-tools

The issues with mate-system-tools, I have are:

  o not well tested inside Debian
  o not needed on enterprise sites (they are useless with
LDAP, Kerberos, etc.).

So what you can convince me of is adding mate-system-tools to  
Suggests: in mate-desktop-environment-extras, but that does not make a  
change for the installation procedure and won't be much appreciated by  
the Debian release team either, I guess.


I'd say, we should compensate this via documentation, how about  
helping out with improving [1] and mentioning mate-system-tools there?


light+love,
Mike

[1] https://wiki.debian.org/Mate

--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgptL3891ZuJ4.pgp
Description: Digitale PGP-Signatur


Bug#785069: jessie live-installer can't install grub when booted via usb drive without internet

2015-05-11 Thread Pirate Praveen
package: live-installer
severity: critical
version: 49

I had to install grub manually going into console (control+alt f1),
mount the install disk and use dpkg -i to install grub twice. One was
i386 lxde edition of jessie on virtual box and second was amd64 version
of cinnamon+nonfree on a dell laptop. I used dd to make the usb disk
bootable. In both cases internet connection was not available. I think
it is something to do with configuring the disk as an apt source properly.

This is very disappointing as live + install is very useful.



signature.asc
Description: OpenPGP digital signature