Bug#922604: Re-assign and merge

2019-06-23 Thread andreimpopescu
control: reassign -1 keyboard-configuration
control: forcemerge 924657 922604

These appear to be the same issue, so merging accordingly.

Kind regards,
Andrei
-- 
http://wiki.debian.org/FAQsFromDebianUser


signature.asc
Description: PGP signature


Processed: Re-assign and merge

2019-06-23 Thread Debian Bug Tracking System
Processing control commands:

> reassign -1 keyboard-configuration
Bug #922604 [console-setup] all_kbdnames data structure corrupt
Bug reassigned from package 'console-setup' to 'keyboard-configuration'.
No longer marked as found in versions console-setup/1.189.
Ignoring request to alter fixed versions of bug #922604 to the same values 
previously set
> forcemerge 924657 922604
Bug #924657 [keyboard-configuration] kbdnames are generated with incorrect 
translations
Bug #922604 [keyboard-configuration] all_kbdnames data structure corrupt
Set Bug forwarded-to-address to 
'https://salsa.debian.org/installer-team/console-setup/merge_requests/2'.
Severity set to 'serious' from 'normal'
Marked as found in versions console-setup/1.188.
Added tag(s) patch.
Merged 922604 924657

-- 
922604: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=922604
924657: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=924657
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#930428: debootstrap should ensure matching _apt uid

2019-06-23 Thread Philipp Kern

On 2019-06-21 20:36, Ben Hutchings wrote:

On Thu, 2019-06-20 at 20:33 +0200, Philipp Kern wrote:

On 20/06/2019 09:50, Ansgar Burchardt wrote:
> Ansgar Burchardt writes:
> > (I don't maintain debootstrap.)
> >
> > I don't think it is a good idea to require debootstrap to know about
> > such details.
> >
> > For limiting network access, I would recommend instead using network
> > namespaces (to only provide limited network access for all processes)
> > and/or user namespaces (if filtering for single UIDs is really needed).
> > These do not require any uids to match between in- and outside.
>
> And sadly the submitter's address bounced my mail as the mail provider
> the submitter uses cannot parse RFC-5321 mail addresses correctly.

Well, you can use -submitter@ if you already know that your domain is
problematic. Even re-reading the RFC I'm not sure why that's a bug. 
RFC
5321 references RFC 1035's definition of the label, which specifies 
that

a  needs to be first in the label.

[...]

No, RFC 1035 says that starting each label with a letter "will result
in fewer problems with many applications".  But RFC 1123 says a label
*can* begin with a digit, and that there is no ambiguity with IP
literals because TLDs start with a letter.


Thanks for the clarification (although the "will result in fewer 
problems" is kind of what I meant then, I guess).


It turns out what he did was not apparent in the mail I replied to and 
the problem was instead in the local part (using quotes and whitespace 
in it), which - while potentially valid - is also such an odd corner 
case that I think we'd be hard pressed to find anyone else who does 
that.


And then again, if your whole goal is to test the boundaries of 
deliveries (and potentially to avoid spam while doing so), you are 
somewhat on your own in the modern Internet. :)


Kind regards
Philipp Kern



Bug#930428: debootstrap should ensure matching _apt uid

2019-06-23 Thread Philipp Kern

On 2019-06-21 07:51, Trek wrote:

On Thu, 20 Jun 2019 22:31:15 +0200
Ansgar Burchardt  wrote:


If _apt deserves a special solution, I would suggest assigning the
_apt user a static uid instead of patching debootstrap.


it seems to me the simplest approach, from a technical point of view,
and it's the one I'm using since _apt user was introduced (making sure
uids match)


Adding deity@l.d.o. APT maintainers, please see the context in the bug. 
Do you think there should be logic in debootstrap to handle the case of 
trying to have the same UID within a chroot and outside, or could you 
apply for a static UID assignment? I would also prefer the latter, but I 
honestly don't know how messy the migration would be...


(If so, I guess this bug should be reassigned to apt.)

Kind regards and thanks
Philipp Kern



Processed: Bug#782287 marked as pending in hw-detect

2019-06-23 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #782287 [hw-detect] hw-detect: install open-vm-tools in d-i
Added tag(s) pending.

-- 
782287: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=782287
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#930970: rootskel FTCBFS: hard codes the build architecture compiler

2019-06-23 Thread Helmut Grohne
Source: rootskel
Version: 1.131
Tags: patch
User: debian-cr...@lists.debian.org
Usertags: ftcbfs

rootskel fails to cross build from source, because some Makefile hard
codes plain gcc. After making it substitutable, rootskel cross builds
successfully. Please consider applying the attached patch.

Helmut
diff --minimal -Nru rootskel-1.131/debian/changelog 
rootskel-1.131+nmu1/debian/changelog
--- rootskel-1.131/debian/changelog 2019-06-13 21:28:44.0 +0200
+++ rootskel-1.131+nmu1/debian/changelog2019-06-23 19:50:43.0 
+0200
@@ -1,3 +1,10 @@
+rootskel (1.131+nmu1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Make gcc substitutable. (Closes: #-1)
+
+ -- Helmut Grohne   Sun, 23 Jun 2019 19:50:43 +0200
+
 rootskel (1.131) unstable; urgency=medium
 
   * Team upload
diff --minimal -Nru rootskel-1.131/src/sbin/Makefile 
rootskel-1.131+nmu1/src/sbin/Makefile
--- rootskel-1.131/src/sbin/Makefile2013-09-19 02:08:24.0 +0200
+++ rootskel-1.131+nmu1/src/sbin/Makefile   2019-06-23 19:50:30.0 
+0200
@@ -18,13 +18,13 @@
 endif
 
 console-type: console-type.c
-   gcc -Os -Wall console-type.c -o console-type
+   $(CC) -Os -Wall console-type.c -o console-type
 
 get-real-console-linux:
-   gcc -Os -Wall get-real-console-linux.c -o get-real-console-linux
+   $(CC) -Os -Wall get-real-console-linux.c -o get-real-console-linux
 
 steal-ctty: steal-ctty.c
-   gcc -Os -Wall steal-ctty.c -o steal-ctty
+   $(CC) -Os -Wall steal-ctty.c -o steal-ctty
 
 ifeq ($(DEB_HOST_ARCH_OS),linux)
 build: console-type get-real-console-linux steal-ctty


Re: Bug#930788: creating /var/lib/dpkg/cmethopt

2019-06-23 Thread Sven Joachim
On 2019-06-20 18:19 +0200, Ansgar Burchardt wrote:

> Package: apt,dselect
> Severity: normal
>
> Hi,
>
>   [ X-Debbugs-Cc'ed -boot@ for debootstrap ]
>
> today I learned that debootstrap as special code to create the file
> /var/lib/dpkg/cmethopt (contents: "apt apt"); this is the function
> setup_dselect_method in functions.  It seems wrong that debootstrap
> has to know about such a particular detail.

That code has been in debootstrap forever, at least since woody (the
oldest version on snapshot.debian.org is 0.1.17.7woody1).  I suspect
back in the days this was actually useful, but nowadays rather few
people actually use dselect, and debootstrap should stop creating
/var/lib/dpkg/cmethopt.

> Alternatives to debootstrap might also not create the file at all.
>
> So I wonder if this could be created somewhere else.  An APT developer
> said this is used by dselect and suggested to file a bug against
> apt,dselect; he also had the idea that the file might be created in
> dselect's postinst.

Makes sense, although dselect happily starts without that file; the
admin would have to select an install method and had better know that
they should choose "apt" from the list, but people willingly using
dselect probably can be expected to know what they are doing.

Removing /var/lib/dpkg/cmethopt when dselect is purged seems also
logical to me.

Cheers,
   Sven



Processing of debian-installer_20190623_source.changes

2019-06-23 Thread Debian FTP Masters
debian-installer_20190623_source.changes uploaded successfully to localhost
along with the files:
  debian-installer_20190623.dsc
  debian-installer_20190623.tar.gz
  debian-installer_20190623_source.buildinfo

Greetings,

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



Bug#929667: debian-installer doesn't install Recommends of linux-image-*

2019-06-23 Thread Cyril Brulebois
Hi Ben & Patrick,

Ben Hutchings  (2019-05-28):
> Control: tag -1 serious
> 
> On Tue, 2019-05-28 at 10:16 +0200, Patrick wrote:
> > Package: debian-installer
> > Version: 20190410
> > 
> > debian-installer doesn't install the Recommends of "linux-image-*".
> > Apparently, this is by design since [1].
> >
> > The effects are:
> > 1) For "buster", a clean install doesn't include "apparmor" and
> > "firmware-linux-free" (both are Recommends for "linux-image-*"). This
> > is curious, because [2] suggests "apparmor" is enabled by default,
> > while it actually isn't.
> > 2) A future kernel upgrade initiated by "apt" _WILL_ install the
> > "Recommends", causing "apparmor" and "firmware-linux-free" to be
> > installed at that stage.

Right, thanks for the catch and the report.

> There has (effectively) been a change in APT's behaviour since that
> earlier commit.  "apt-get upgrade" does not install new packages unless
> you use the --with-new-pkgs option.  However, the newer "apt upgrade"
> command does install new dependencies and recommendations.
> 
> Because security upgrades sometimes introduce ABI changes and new
> binary packages, we now recommend use of either
> "apt-get upgrade --with-new-pkgs" or "apt upgrade" for all upgrades,
> and since last year the installer uses the former.
> 
> > I think these effects are undesired. I'd suggest to use
> > "APT::Install-Recommends true" when installing the linux image.
> 
> I agree that it's a serious problem that AppArmor may only be properly
> enabled later, and I'm upgrading the severity accordingly.
> 
> I think that for at least the kernel installation,
> APT::Install-Recommends should be set to the same value it will have in
> the installed system, i.e. dependent on base-installer/install-
> recommends.
> 
> However, I think we should revert this commit entirely.  The current
> default behaviour is that *any* security update or other stable update
> will cause the installation of its recommendations where they weren't
> installed before, and that is likely to be quite surprising.

This approach seems reasonable; feel free to go ahead on the commit,
upload, and possibly unblock request fronts. Given the current freeze
related hints, base-installer can be uploaded right away if you wish
to do so, that shouldn't impact the d-i release process for RC 2.

Cc-ing Steve who mentioned an interest in this bugfix; worst case I'll
deal with it myself in a couple of days.

Thanks everyone!


Cheers,
-- 
Cyril Brulebois (k...@debian.org)
D-I release manager -- Release team member -- Freelance Consultant


signature.asc
Description: PGP signature


Bug#930569: marked as done (debian-installer: Dark theme installer selects MATE by default)

2019-06-23 Thread Debian Bug Tracking System
Your message dated Sun, 23 Jun 2019 21:48:36 +
with message-id 
and subject line Bug#930569: fixed in debian-installer 20190623
has caused the Debian Bug report #930569,
regarding debian-installer: Dark theme installer selects MATE by default
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.)


-- 
930569: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930569
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debian-installer
Version: 20190410
Severity: important

Dear Maintainer,

I tried to install system with firmware-testing-amd64-n
etinst.iso
from unofficial "non-free" weekly cd (2019-06-10 07:12)
I chosed Dark theme installer menu > Graphical Install

On "Software selection" there were 2 check-boxes:
1. on the "Debian desktop environment"
2. on the "...MATE"

Old/light Graphical Installer still has checkbox
only on the "Debian desktop environment"



-- System Information:
Debian Release: 10.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-5-amd64 (SMP w/1 CPU core)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=uk_UA.UTF-8, LC_CTYPE=uk_UA.UTF-8 (charmap=UTF-8), 
LANGUAGE=uk_UA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: debian-installer
Source-Version: 20190623

We believe that the bug you reported is fixed in the latest version of
debian-installer, 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 930...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois  (supplier of updated debian-installer 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: Sun, 23 Jun 2019 21:53:21 +0200
Source: debian-installer
Architecture: source
Version: 20190623
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Cyril Brulebois 
Closes: 923675 930569
Changes:
 debian-installer (20190623) unstable; urgency=medium
 .
   [ Cyril Brulebois ]
   * Add haveged-udeb [linux] to the pkg-lists/base, so that entropy
 starvation issues can be avoided (Closes: #923675). To be used
 by S50entropy-source in rootskel.
   * Bump Linux kernel ABI from 4.19.0-4 to 4.19.0-5
   * Drop volatile.debian.{net,org} exclusion from gen-sources.list.udeb,
 they went away with Squeeze(!).
   * Update translation-status for the release.
 .
   [ Samuel Thibault ]
   * Make hurd-i386 use debian-ports keyring and include
 debian-ports-archive-keyring-udeb.
   * Add œŒ glyphs for the french translation.
   * Make hurd and kfreebsd boot menu use new theme.
   * Update size limits.
   * Relabel "dark theme" entry to "accessible high contrast" entry
 (Closes: #930569)
 .
   [ John Paul Adrian Glaubitz ]
   * alpha: Add pata-modules to cdrom package list.
   * ia64: Add sata-modules to cdrom package list.
   * ia64: Switch bootloader from elilo to grub-efi-ia64.
   * powerpc: Switch bootloader from yaboot to grub-ieee1275.
   * ppc64: Switch bootloader from yaboot to grub-ieee1275.
   * sh4: Set KERNELVERSION to LINUX_KERNEL_ABI.
   * sparc: Strip KERNELVERSION suffix from KERNELNAME.
   * sparc: Switch bootloader from silo to grub-ieee1275.
   * sparc64: Strip KERNELVERSION suffix from KERNELNAME.
   * sparc64: Switch bootloader from silo to grub-ieee1275.
 .
   [ Vagrant Cascadian ]
   * [arm64] Add u-boot images for a64-olinuxino, orangepi_zero_plus2 and
 teres_i.
   * [arm64] Update Build-Depends to u-boot-sunxi (>= 2019.01+dfsg-5).
   * [armhf] Compress u-boot images with "gzip -n" to avoid embedding
 timestamps which cause reproducibility issues.
 .
   [ Domenico Andreoli ]
   * Add support for NanoPi NEO2
 .
   [ Vagrant Cascadian ]
   * [arm64] Add support for netboot SD-card-images.
 .
   [ Steve McIntyre ]
   * Add Build-Depends on shim-signed and grub-efi-ARCH-signed for
 amd64/i386/arm64
   * Use the signed shim and g

Bug#923675: marked as done (debian-installer: consider using haveged to gather entropy)

2019-06-23 Thread Debian Bug Tracking System
Your message dated Sun, 23 Jun 2019 21:48:36 +
with message-id 
and subject line Bug#923675: fixed in debian-installer 20190623
has caused the Debian Bug report #923675,
regarding debian-installer: consider using haveged to gather entropy
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.)


-- 
923675: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=923675
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debian-installer
Severity: important

Spotted with the netboot-gtk-french-with-https playbook of the tiny d-i
test suite, that sets a few command line parameters:

mirror/protocol=https
mirror/https/hostname=deb.debian.org
mirror/https/directory=/debian

the initial choose-mirror scanning of the repository takes ages (up to
several minutes, if one doesn't interact with the VM):

Mar  3 17:09:12 syslogd started: BusyBox v1.27.2
[…]
Mar  3 17:09:31 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/oldstable/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:51 kernel: [  161.130075] random: crng init done
Mar  3 17:11:51 kernel: [  161.130086] random: 7 urandom warning(s) missed 
due to ratelimiting
Mar  3 17:11:52 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/jessie/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:53 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/stable/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:53 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/stretch/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:54 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/testing/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:54 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/buster/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:55 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/unstable/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:56 choose-mirror[1710]: DEBUG: command: wget --no-verbose 
https://deb.debian.org/debian/dists/sid/Release -O - | grep -E 
'^(Suite|Codename|Architectures):'
Mar  3 17:11:56 choose-mirror[1710]: INFO: suite/codename set to: 
testing/buster

Any advice on how to fix/mitigate this appreciated.


Cheers,
-- 
Cyril Brulebois (k...@debian.org)<https://debamax.com/>
D-I release manager -- Release team member -- Freelance Consultant
--- End Message ---
--- Begin Message ---
Source: debian-installer
Source-Version: 20190623

We believe that the bug you reported is fixed in the latest version of
debian-installer, 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 923...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois  (supplier of updated debian-installer 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: Sun, 23 Jun 2019 21:53:21 +0200
Source: debian-installer
Architecture: source
Version: 20190623
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Cyril Brulebois 
Closes: 923675 930569
Changes:
 debian-installer (20190623) unstable; urgency=medium
 .
   [ Cyril Brulebois ]
   * Add haveged-udeb [linux] to the pkg-lists/base, so that entropy
 starvation issues can be avoided (Closes: #923675). To be used
 by S50entropy-source in rootskel.
   * Bump Linux kernel ABI from 4.19.0-4 to 4.19.0-5
   * Drop volatile.debian.{net,org} exclusion from gen-sources.list.udeb,
 they went away with Squeeze(!).
   * Update translation-status for the release.
 .
   [ Samuel Thibault ]
   * Make hurd-i386 use debian-ports keyring and include
 debian-ports-archive-keyring-udeb.
   * Ad

debian-installer_20190623_source.changes ACCEPTED into unstable

2019-06-23 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 23 Jun 2019 21:53:21 +0200
Source: debian-installer
Architecture: source
Version: 20190623
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Cyril Brulebois 
Closes: 923675 930569
Changes:
 debian-installer (20190623) unstable; urgency=medium
 .
   [ Cyril Brulebois ]
   * Add haveged-udeb [linux] to the pkg-lists/base, so that entropy
 starvation issues can be avoided (Closes: #923675). To be used
 by S50entropy-source in rootskel.
   * Bump Linux kernel ABI from 4.19.0-4 to 4.19.0-5
   * Drop volatile.debian.{net,org} exclusion from gen-sources.list.udeb,
 they went away with Squeeze(!).
   * Update translation-status for the release.
 .
   [ Samuel Thibault ]
   * Make hurd-i386 use debian-ports keyring and include
 debian-ports-archive-keyring-udeb.
   * Add œŒ glyphs for the french translation.
   * Make hurd and kfreebsd boot menu use new theme.
   * Update size limits.
   * Relabel "dark theme" entry to "accessible high contrast" entry
 (Closes: #930569)
 .
   [ John Paul Adrian Glaubitz ]
   * alpha: Add pata-modules to cdrom package list.
   * ia64: Add sata-modules to cdrom package list.
   * ia64: Switch bootloader from elilo to grub-efi-ia64.
   * powerpc: Switch bootloader from yaboot to grub-ieee1275.
   * ppc64: Switch bootloader from yaboot to grub-ieee1275.
   * sh4: Set KERNELVERSION to LINUX_KERNEL_ABI.
   * sparc: Strip KERNELVERSION suffix from KERNELNAME.
   * sparc: Switch bootloader from silo to grub-ieee1275.
   * sparc64: Strip KERNELVERSION suffix from KERNELNAME.
   * sparc64: Switch bootloader from silo to grub-ieee1275.
 .
   [ Vagrant Cascadian ]
   * [arm64] Add u-boot images for a64-olinuxino, orangepi_zero_plus2 and
 teres_i.
   * [arm64] Update Build-Depends to u-boot-sunxi (>= 2019.01+dfsg-5).
   * [armhf] Compress u-boot images with "gzip -n" to avoid embedding
 timestamps which cause reproducibility issues.
 .
   [ Domenico Andreoli ]
   * Add support for NanoPi NEO2
 .
   [ Vagrant Cascadian ]
   * [arm64] Add support for netboot SD-card-images.
 .
   [ Steve McIntyre ]
   * Add Build-Depends on shim-signed and grub-efi-ARCH-signed for
 amd64/i386/arm64
   * Use the signed shim and grub for all 3 arches for EFI images
   * efi-image: use an extra command-line arg to track if we should be
 using signed grub and shim etc.
Checksums-Sha1:
 291fe7b2fba61f0e94ca487336f0c0069c1ad473 3766 debian-installer_20190623.dsc
 e0591a8784ac36c05177c8873b7081d8934aebc5 1387738 
debian-installer_20190623.tar.gz
 e817ddd3577bb4b9f2e766610fedcc2503b32e8b 11628 
debian-installer_20190623_source.buildinfo
Checksums-Sha256:
 1f5bb4c85594648f06626699a7da03e43ccbcf8515e0e227da9591308525595b 3766 
debian-installer_20190623.dsc
 bcfda31cd4d39854daafd0f040cb9b1f16728255b5e15d0d942556bf20d24ad8 1387738 
debian-installer_20190623.tar.gz
 c9737c32fe2c0106489c3e92499524da4ac400742f461be117e1a5d16ad65736 11628 
debian-installer_20190623_source.buildinfo
Files:
 b965694c51a074c6b1ae0a1a80631367 3766 devel optional 
debian-installer_20190623.dsc
 d3f3132eb1e39e6f3c68960846ed76fc 1387738 devel optional 
debian-installer_20190623.tar.gz
 006d1a81f2d3f091c65675ba18e83df6 11628 devel optional 
debian-installer_20190623_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAl0P6qkACgkQ/5FK8MKz
VSBFTQ/9GDk+Z25GpNU9f3e9rQUEsChVKJ2MY/lfkkJlaQKWVrXdkPO76zpJS6GK
du1a9xpWjd33WFUY2qfVwD6NUXtcYsbfdDi93BOxQdiVPsjiGDP39eXWQ/RNLWE3
r1+tC5cWNh+vYL5UpE/5mZBfSOoP2IzQdp8Ig/j9Rquu/UVNcZY5XGfJzDj7l8El
6M86SrExEpMzWdgFeETcVGEnn17xWOtHJBcmJCK4KJRb4McVSXDIInaAW5s7aAfS
moO/qfi8YO65jnjyQ8boQE5r5NTgSNOUkzv+EzbQYuBhc/kC62mnVDK9PZlSSZU7
VOo9+dgY3lgpj9YdtqB6gOL5xOC0twlYvT3o4e6qCHS2RIV797UKUAl9kXJS5PXy
GJGDY0a3bpw75B8MQYY59X9DRVbQjWngU0kmc+SnKZS5IQbylR2xywuyfLnWaZ9Z
MQhkueIsxygFMyqs62oqGHOOBTZC2XWV34Ui62RZ0scmr8r5x74v1oRq4XuE4W1e
cvTYdH4uCw+0eC3XXj5PqBgrEZbd5hd4D7EXt1lYz176dodY6j867Q2qfDXkQCpI
OQII9wBkygLDSUk0TZYKNC9LvKtBkQNB+QPOqXI0Rsi9rAvsa9b9sQl2UPB6/zcE
isWCV7/5zvp9kt0jMCl1znhJhiqcaEbQ2shEnaB9DfQZdQhzRBo=
=yiE4
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Please dak copy-installer 20190623

2019-06-23 Thread Cyril Brulebois
Hi,

FTPmasters, please sync the installer from sid to testing:

  dak copy-installer 20190623


Release team: FYI, I've unblocked and urgented it.


Thanks for your time.


Cheers,
-- 
Cyril Brulebois (k...@debian.org)<https://debamax.com/>
D-I release manager -- Release team member -- Freelance Consultant


signature.asc
Description: PGP signature


Re: Please dak copy-installer 20190623

2019-06-23 Thread Ansgar
Cyril Brulebois writes:
> FTPmasters, please sync the installer from sid to testing:
>
>   dak copy-installer 20190623

Done.

Thanks for your work,
Ansgar