Bug#50913: marked as done (sysvinit should have /etc/init.d/devpts.sh [PATCH])
Your message dated 27 Jan 2000 09:39:46 -0000
with message-id <[🔎] 20000127093946.16809.qmail@master.debian.org>
and subject line Bug#50913: fixed in glibc 2.1.2-12
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Darren Benham
(administrator, Debian Bugs database)
--------------------------------------
Received: (at maintonly) by bugs.debian.org; 22 Nov 1999 07:28:29 +0000
Received: (qmail 4981 invoked from network); 22 Nov 1999 07:28:29 -0000
Received: from cerberus.espy.org (mail@206.163.71.145)
by master.debian.org with SMTP; 22 Nov 1999 07:28:29 -0000
Received: from jk by cerberus.espy.org with local (Exim 3.03 #1 (Debian GNU/Linux))
id 11pntc-0003Jy-00; Sun, 21 Nov 1999 23:28:27 -0800
From: Joel Klecker <jk@espy.org>
To: Debian Bug Tracking System <maintonly@bugs.debian.org>
Subject: sysvinit should have /etc/init.d/devpts.sh [PATCH]
X-Reportbug-Version: 0.42
X-Mailer: reportbug 0.42
Date: Sun, 21 Nov 1999 23:28:20 -0800
Message-Id: <E11pntc-0003Jy-00@cerberus.espy.org>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Package: sysvinit
Version: 2.77-3
Severity: normal
While trying to figure out ways to simplify libc's maintainer scripts,
I realized libc is a silly place for an init script.
I decided that the script would be at home with the rest of sysvinit's
rcS scripts, and I hope you agree.
Unfortunately, I was unable to stop myself from making other changes
to the package, such as FHS compliance and compliance with new policy.
(SHELL=/bin/bash in debian/rules is due to the use of brace expansion)
I can take out the unrelated parts and present a new diff if you'd like.
If you choose to accept this patch or something like it, the upload of
sysvinit with devpts.sh and glibc without it need to be coordinated.
I believe you once stated that you thought the separate init script
for devpts was overkill and suggested that a devpts line simply be
added to /etc/fstab; I oppose this because I'm don't like the idea of
changing people's /etc/fstab files from a script.
Let me know your thoughts on this.
Thanks.
- -- Espy
- --- sysvinit-2.77/debian/changelog Tue Oct 5 12:52:40 1999
+++ sysvinit-2.77.devpts.sh/debian/changelog Sun Nov 21 22:51:07 1999
@@ -1,3 +1,12 @@
+sysvinit (2.77-3.1) unstable; urgency=low
+
+ * Non-maintainer release.
+ * Add /etc/init.d/devpts.sh and /etc/default/devpts.
+ * Replace libc(6|6.1|0.2) << 2.1.2-11.
+ * Update Standards-Version to 3.1.0.
+
+ -- Joel Klecker <espy@debian.org> Sun, 21 Nov 1999 22:49:38 -0800
+
sysvinit (2.77-3) unstable; urgency=low
* Remove hwclock.sh initialization and script itself (closes: #45164)
- --- sysvinit-2.77/debian/conffiles Fri Dec 12 04:30:26 1997
+++ sysvinit-2.77.devpts.sh/debian/conffiles Sun Nov 21 21:47:11 1999
@@ -1,6 +1,8 @@
+/etc/default/devpts
/etc/init.d/bootmisc.sh
/etc/init.d/checkfs.sh
/etc/init.d/checkroot.sh
+/etc/init.d/devpts.sh
/etc/init.d/halt
/etc/init.d/hostname.sh
/etc/init.d/mountall.sh
- --- sysvinit-2.77/debian/control Wed Aug 4 02:18:52 1999
+++ sysvinit-2.77.devpts.sh/debian/control Sun Nov 21 22:50:53 1999
@@ -1,8 +1,9 @@
Source: sysvinit
Section: base
Priority: required
+Build-Depends: dpkg-dev (>= 1.4.1.5)
Maintainer: Miquel van Smoorenburg <miquels@cistron.nl>
- -Standards-Version: 3.0.1.0
+Standards-Version: 3.1.0
Package: sysvinit
Essential: yes
@@ -10,7 +11,7 @@
Pre-depends: ${shlibs:Depends}
Conflicts: last, file-rc (<= 0.4.2), kbd (<< 0.95-2), mdutils (<< 0.35-9)
Depends: dpkg (>= 1.4.0.21), mount (>= 2.7l-1), util-linux (>= 2.9t-2)
- -Replaces: last, bsdutils (<=2.0-2)
+Replaces: last, bsdutils (<=2.0-2), ${libc-package} (<< 2.1.2-11)
Description: System-V like init.
Init is the first program to run after your system is booted, and
continues to run as process number 1 until your system halts. Init's
- --- sysvinit-2.77/debian/etc/default/devpts Wed Dec 31 16:00:00 1969
+++ sysvinit-2.77.devpts.sh/debian/etc/default/devpts Sun Nov 21 21:45:28 1999
@@ -0,0 +1,5 @@
+# GID of the `tty' group
+TTYGRP=5
+
+# Set to 600 to have `mesg n' be the default
+TTYMODE=620
- --- sysvinit-2.77/debian/etc/init.d/devpts.sh Wed Dec 31 16:00:00 1969
+++ sysvinit-2.77.devpts.sh/debian/etc/init.d/devpts.sh Sun Nov 21 22:22:38 1999
@@ -0,0 +1,59 @@
+#! /bin/sh
+set -e
+
+. /etc/default/devpts
+
+[ `uname -s` = "Linux" ] || exit 0
+
+make_devptmx()
+{
+ [ -c /dev/ptmx ] || mknod --mode=666 /dev/ptmx c 5 2
+}
+
+make_devpts()
+{
+ [ -d /dev/pts ] || mkdir --mode=755 /dev/pts
+}
+
+mount_devpts_fs()
+{
+ mount -t devpts devpts /dev/pts -ogid=${TTYGRP},mode=${TTYMODE}
+}
+
+devfs=$(grep -c devfs /proc/filesystems || true)
+devpts=$(grep -c devpts /proc/filesystems || true)
+devpts_mounted=$(mount | grep -c devpts || true)
+
+release=$(uname -r)
+tail=${release#*.*.}
+major_release=${release%.${tail}}
+minor_release=${tail%%[-.]*}
+
+
+case ${major_release} in
+ 2.[23456789] | 3.*)
+ if [ $devfs -ge 1 ] || [ $devpts -lt 1 ]
+ then
+ make_devptmx
+ make_devpts
+ if [ $devpts_mounted -lt 1 ]
+ then
+ mount_devpts_fs
+ fi
+ fi
+ ;;
+ 2.1)
+ if [ ${minor_release} -gt 115 ]
+ then
+ if [ $devfs -ge 1 ] || [ $devpts -lt 1 ]
+ then
+ make_devptmx
+ mount_devpts
+ if [ $devpts_mounted -lt 1 ]
+ then
+ mount_devpts_fs
+ fi
+ fi
+ fi
+ ;;
+esac
- --- sysvinit-2.77/debian/postinst Mon Oct 4 02:46:07 1999
+++ sysvinit-2.77.devpts.sh/debian/postinst Sun Nov 21 22:52:49 1999
@@ -11,6 +11,17 @@
case "$1" in
configure)
oldver=$2
+ # Install /usr/doc/sysvinit symlink.
+ if [ -d /usr/doc ]; then
+ package=$(basename $0 .postinst)
+ if [ ! -e /usr/doc/$package ]; then
+ (cd /usr/doc;
+ if [ -d ../share/doc/$package ]; then
+ ln -s ../share/doc/$package $package ;
+ fi
+ )
+ fi
+ fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
exit 0
@@ -37,7 +48,7 @@
then
cp -a /etc/init.d/network.saved /etc/init.d/network
else
- - cp -a /usr/doc/sysvinit/examples/network /etc/init.d/network
+ cp -a /usr/share/doc/sysvinit/examples/network /etc/init.d/network
fi
fi
rm -f /etc/init.d/network.saved
@@ -47,7 +58,7 @@
then
cp -a /etc/inittab.saved /etc/inittab
else
- - cp -a /usr/doc/sysvinit/examples/inittab /etc/inittab
+ cp -a /usr/share/doc/sysvinit/examples/inittab /etc/inittab
fi
fi
rm -f /etc/inittab.saved
@@ -56,7 +67,7 @@
#
# Install sample rcS file.
#
- - cp /usr/doc/sysvinit/examples/default.rcS /etc/default/rcS
+ cp /usr/share/doc/sysvinit/examples/default.rcS /etc/default/rcS
else
#
# Change GMT=-u to UTC=yes etc in existing rcS file.
@@ -201,6 +212,7 @@
updatercd checkroot.sh start 10 S .
updatercd modutils start 20 S .
updatercd checkfs.sh start 30 S .
+updatercd devpts.sh start 35 S .
updatercd mountall.sh start 35 S .
updatercd hostname.sh start 40 S .
updatercd network start 40 S .
- --- sysvinit-2.77/debian/prerm Wed Dec 31 16:00:00 1969
+++ sysvinit-2.77.devpts.sh/debian/prerm Sun Nov 21 22:34:20 1999
@@ -0,0 +1,12 @@
+#! /bin/sh
+set -e
+
+if [ "$1" = remove ]; then
+ if [ -d /usr/doc ]; then
+ package=$(basename $0 .prerm)
+ if [ -L /usr/doc/$package ]; then
+ rm /usr/doc/$package ;
+ fi
+ fi
+fi
+
- --- sysvinit-2.77/debian/rules Fri Jan 8 04:15:31 1999
+++ sysvinit-2.77.devpts.sh/debian/rules Sun Nov 21 22:54:59 1999
@@ -3,6 +3,8 @@
# debian/rules file for sysvinit
#
+SHELL=/bin/bash
+
# Name.
package = sysvinit
tmp = $(shell pwd)/debian/tmp
@@ -26,35 +28,45 @@
-rm -rf $(tmp)
install -d -g root -m 755 -o root $(tmp)
install -d -g root -m 755 -o root $(tmp)/{DEBIAN,etc,usr}
- - install -d -g root -m 755 -o root $(tmp)/usr/doc
+ install -d -g root -m 755 -o root $(tmp)/usr/share/doc
install -d -g root -m 755 -o root $(tmp)/usr/include
- - install -d -g root -m 755 -o root $(tmp)/usr/doc/$(package)
- - install -g root -m 644 debian/changelog $(tmp)/usr/doc/$(package)
- - install -g root -m 644 debian/README.runlevels $(tmp)/usr/doc/$(package)
- - gzip -9f $(tmp)/usr/doc/$(package)/{changelog,README.runlevels}
- - install -d -g root -m 755 -o root $(tmp)/usr/doc/$(package)/examples
- - cp -af debian/examples/* $(tmp)/usr/doc/$(package)/examples
+ install -d -g root -m 755 -o root $(tmp)/usr/share/doc/$(package)
+ install -g root -m 644 debian/changelog $(tmp)/usr/share/doc/$(package)
+ install -g root -m 644 debian/README.runlevels $(tmp)/usr/share/doc/$(package)
+ gzip -9f $(tmp)/usr/share/doc/$(package)/{changelog,README.runlevels}
+ install -d -g root -m 755 -o root $(tmp)/usr/share/doc/$(package)/examples
+ cp -af debian/examples/* $(tmp)/usr/share/doc/$(package)/examples
cp -af debian/etc/* $(tmp)/etc
- - mv $(tmp)/etc/inittab $(tmp)/usr/doc/$(package)/examples
+ mv $(tmp)/etc/inittab $(tmp)/usr/share/doc/$(package)/examples
chmod -R g-w $(tmp)
chown -R root.root $(tmp)
install -d -g root -m 755 -o root $(tmp)/bin
install -d -g root -m 755 -o root $(tmp)/sbin
install -d -g root -m 755 -o root $(tmp)/usr/bin
- - install -d -g root -m 755 -o root $(tmp)/usr/man/man{1,5,8}
+ install -d -g root -m 755 -o root $(tmp)/usr/share/man/man{1,5,8}
install -g root -m 755 debian/fsck.nfs $(tmp)/sbin/fsck.nfs
(cd src; make ROOT=$(tmp) DEBIAN=cool install )
- - install -g root -m 644 debian/rc.boot.5 $(tmp)/usr/man/man5
- - install -g root -m 644 debian/rcS.5 $(tmp)/usr/man/man5
- - gzip -9f $(tmp)/usr/man/man*/*
+ install -g root -m 644 debian/rc.boot.5 $(tmp)/usr/share/man/man5
+ install -g root -m 644 debian/rcS.5 $(tmp)/usr/share/man/man5
+ gzip -9f $(tmp)/usr/share/man/man*/*
install -g root -m 644 -o root debian/README \
- - $(tmp)/usr/doc/$(package)/copyright
+ $(tmp)/usr/share/doc/$(package)/copyright
cp debian/preinst $(tmp)/DEBIAN/preinst
+ cp debian/prerm $(tmp)/DEBIAN/prerm
cp debian/postinst $(tmp)/DEBIAN/postinst
install -g root -m 644 -o root debian/conffiles \
$(tmp)/DEBIAN/conffiles
+ifeq ($(DEB_HOST_GNU_TYPE),alpha-linux)
+ echo "libc-package=libc6.1" > debian/substvars
+else
+ifeq ($(DEB_HOST_GNU_SYSTEM),gnu)
+ echo "libc-package=libc0.2" > debian/substvars
+else
+ echo "libc-package=libc6" > debian/substvars
+endif
+endif
dpkg-shlibdeps src/init
- - dpkg-gencontrol
+ dpkg-gencontrol -isp
dpkg --build $(tmp) ..
rm -rf $(tmp)
- --- sysvinit-2.77/src/Makefile Tue Oct 5 12:51:13 1999
+++ sysvinit-2.77.devpts.sh/src/Makefile Sun Nov 21 22:45:35 1999
@@ -17,8 +17,10 @@
ifeq ($(DEBIAN),)
PROGS = init halt shutdown killall5 runlevel sulogin utmpdump \
last mesg wall
+MANDIR = /usr/man
else
PROGS = init halt shutdown killall5 runlevel sulogin last mesg
+MANDIR = /usr/share/man
endif
BIN_OWNER = root
@@ -98,13 +100,13 @@
cd $(ROOT)/bin; ln -sf ../sbin/killall5 pidof; chown $(BIN_COMBO) pidof
cd $(ROOT)/usr/bin; ln -sf last lastb; chown $(BIN_COMBO) lastb
$(INSTALL) -m 644 initreq.h $(ROOT)/usr/include
- - $(INSTALL) -m 644 ../man/*.8 $(ROOT)/usr/man/man8
- - $(INSTALL) -m 644 ../man/*.5 $(ROOT)/usr/man/man5
+ $(INSTALL) -m 644 ../man/*.8 $(ROOT)$(MANDIR)/man8
+ $(INSTALL) -m 644 ../man/*.5 $(ROOT)$(MANDIR)/man5
ifeq ($(DEBIAN),)
- - $(INSTALL) -m 644 ../man/wall.1 $(ROOT)/usr/man/man1
+ $(INSTALL) -m 644 ../man/wall.1 $(ROOT)$(MANDIR)/man1
endif
$(INSTALL) -m 644 ../man/last.1 ../man/lastb.1 ../man/mesg.1 \
- - $(ROOT)/usr/man/man1
+ $(ROOT)$(MANDIR)/man1
#
# This part is skipped on debian systems, the
# debian.preinst script takes care of it.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.0 (GNU/Linux)
Comment: For info see http://www.gnupg.org
iEYEARECAAYFAjg48JsACgkQRJMoLFuwjIYwVACdHJ9AM4DdhglZ3B2cEqr+arHB
XigAoJkcOrttl3iwzseNkijIRfvKKKal
=ooQf
-----END PGP SIGNATURE-----
---------------------------------------
Received: (at 50913-close) by bugs.debian.org; 27 Jan 2000 09:39:47 +0000
Received: (qmail 16813 invoked by uid 1057); 27 Jan 2000 09:39:46 -0000
Date: 27 Jan 2000 09:39:46 -0000
Message-ID: <[🔎] 20000127093946.16809.qmail@master.debian.org>
From: Joel Klecker <debian-glibc@lists.debian.org>
To: 50913-close@bugs.debian.org
Subject: Bug#50913: fixed in glibc 2.1.2-12
We believe that the bug you reported is fixed in the latest version of
glibc, which has been installed in the Debian FTP archive:
libc6_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/base/libc6_2.1.2-12.deb
replacing libc6_2.1.2-11.deb
libc6_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/base/libc6_2.1.2-12.deb
replacing libc6_2.1.2-11.deb
glibc-doc_2.1.2-12_all.deb
to dists/potato/main/binary-all/doc/glibc-doc_2.1.2-12.deb
replacing glibc-doc_2.1.2-11.deb
glibc-doc_2.1.2-12_all.deb
to dists/woody/main/binary-all/doc/glibc-doc_2.1.2-12.deb
replacing glibc-doc_2.1.2-11.deb
locales_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/admin/locales_2.1.2-12.deb
replacing locales_2.1.2-11.0.1.deb
locales_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/admin/locales_2.1.2-12.deb
replacing locales_2.1.2-11.0.1.deb
libc6-prof_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/devel/libc6-prof_2.1.2-12.deb
replacing libc6-prof_2.1.2-11.deb
libc6-prof_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/devel/libc6-prof_2.1.2-12.deb
replacing libc6-prof_2.1.2-11.deb
glibc_2.1.2-12.diff.gz
to dists/potato/main/source/libs/glibc_2.1.2-12.diff.gz
replacing glibc_2.1.2-11.diff.gz
glibc_2.1.2-12.diff.gz
to dists/woody/main/source/libs/glibc_2.1.2-12.diff.gz
replacing glibc_2.1.2-11.diff.gz
glibc_2.1.2-12.dsc
to dists/potato/main/source/libs/glibc_2.1.2-12.dsc
replacing glibc_2.1.2-11.dsc
glibc_2.1.2-12.dsc
to dists/woody/main/source/libs/glibc_2.1.2-12.dsc
replacing glibc_2.1.2-11.dsc
nscd_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/admin/nscd_2.1.2-12.deb
replacing nscd_2.1.2-11.deb
nscd_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/admin/nscd_2.1.2-12.deb
replacing nscd_2.1.2-11.deb
i18ndata_2.1.2-12_all.deb
to dists/potato/main/binary-all/admin/i18ndata_2.1.2-12.deb
replacing i18ndata_2.1.2-11.deb
i18ndata_2.1.2-12_all.deb
to dists/woody/main/binary-all/admin/i18ndata_2.1.2-12.deb
replacing i18ndata_2.1.2-11.deb
libc6-pic_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/devel/libc6-pic_2.1.2-12.deb
replacing libc6-pic_2.1.2-11.deb
libc6-pic_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/devel/libc6-pic_2.1.2-12.deb
replacing libc6-pic_2.1.2-11.deb
libc6-dbg_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/devel/libc6-dbg_2.1.2-12.deb
replacing libc6-dbg_2.1.2-11.deb
libc6-dbg_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/devel/libc6-dbg_2.1.2-12.deb
replacing libc6-dbg_2.1.2-11.deb
libc6-dev_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/devel/libc6-dev_2.1.2-12.deb
replacing libc6-dev_2.1.2-11.deb
libc6-dev_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/devel/libc6-dev_2.1.2-12.deb
replacing libc6-dev_2.1.2-11.deb
libnss1-compat_2.1.2-12_i386.deb
to dists/potato/main/binary-i386/oldlibs/libnss1-compat_2.1.2-12.deb
replacing libnss1-compat_2.1.2-11.deb
libnss1-compat_2.1.2-12_i386.deb
to dists/woody/main/binary-i386/oldlibs/libnss1-compat_2.1.2-12.deb
replacing libnss1-compat_2.1.2-11.deb
Note that this package is not part of the released stable Debian
distribution. It may have dependencies on other unreleased software,
or other instabilities. Please take care if you wish to install it.
The update will eventually make its way into the next released Debian
distribution.
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 50913@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Joel Klecker <debian-glibc@lists.debian.org> (supplier of updated glibc 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.6
Date: Wed, 26 Jan 2000 16:44:12 -0800
Source: glibc
Binary: locales libc0.2-dbg glibc-doc nscd libc6.1-dbg libc0.2 libc6-dbg libnss1-compat libc0.2-prof libc6.1 libc6 libc0.2-pic libc6.1-prof libc6-prof libc0.2-dev libc6.1-pic libc6-pic i18ndata libc6.1-dev libc6-dev
Architecture: source all i386
Version: 2.1.2-12
Distribution: frozen unstable
Urgency: low
Maintainer: Joel Klecker <debian-glibc@lists.debian.org>
Description:
glibc-doc - GNU C Library: Documentation
i18ndata - GNU C Library: National Language (locale) data [source]
libc6 - GNU C Library: Shared libraries and Timezone data
libc6-dbg - GNU C Library: Libraries with debugging symbols
libc6-dev - GNU C Library: Development Libraries and Header Files.
libc6-pic - GNU C Library: PIC archive library
libc6-prof - GNU C Library: Profiling Libraries.
libnss1-compat - GNU C Library: Name Service Switch version 1 compatibility
locales - GNU C Library: National Language (locale) data [binary]
nscd - GNU C Library: Name Service Cache Daemon
Closes: 50913 53659 53680 53705 53754 53842 55377 55439
Changes:
glibc (2.1.2-12) frozen unstable; urgency=low
.
* The "Cardboard Messiah" release.
* debian/rules: Form arch_packages and indep_packages using += instead
of $(filter-out ...).
* debian/package-rules/locales.mk: Remove cross-compiling kluges.
* debian/package-rules/libc-dbg.mk: Fix libthread_db (closes:Bug#55439).
* debian/control.in/main:
- locales: Architecture all -> any.
- Build-Depends:
+ add make (>= 3.78) due to use of new warning and error make functions.
+ add gcc (>= 2.95.2-5) for alpha.
* Merge gconv-modules back into locales.
* Move locale and localedef programs back into locales.
* Put devpts.sh init script back in $(libc). (closes:Bug#50913,#53842)
* Add Replaces for timezones back into $(libc).
* Kill $(libc)-bin.
* Restore `tzselect' script, which slipped out of $(libc) (closes:Bug#55377)
* Bugs fixed in -11.0.1 (closes:Bug#53705,#53659,#53680,#53754
* Update to CVS as of 2000-01-26.
* Eliminate obsoleted patches.
Files:
616d1112fb5535ecdacd21023798db2d 1080 libs required glibc_2.1.2-12.dsc
43f222dc2ba0582f8b3c04fded0c0278 871071 libs required glibc_2.1.2-12.diff.gz
621dd93fc7ab61e4589c23dbd228dcf2 1143702 base required libc6_2.1.2-12_i386.deb
888eebc9ebf24ff6f4ef1c6fbc11e003 2065944 devel standard libc6-dev_2.1.2-12_i386.deb
e3bccbd4c1fa292616d920c5d4164ce6 931118 devel extra libc6-prof_2.1.2-12_i386.deb
2a55220541dbf89cb319120616549d00 2423772 devel extra libc6-dbg_2.1.2-12_i386.deb
d2e4bd9c1c413ddd9716df0a1d571bdd 667746 devel extra libc6-pic_2.1.2-12_i386.deb
b2d519cadc729b10544a19b6b765bdea 1988134 admin standard locales_2.1.2-12_i386.deb
4be79b3d63fa23cb932aca473785ba89 33410 admin optional nscd_2.1.2-12_i386.deb
6b24a636a84b0d417b844811faf73eef 38564 oldlibs extra libnss1-compat_2.1.2-12_i386.deb
138b356cd112eb91600509176543f171 1033602 admin extra i18ndata_2.1.2-12_all.deb
920634f20c7a27df257393f6540ad3c2 1700114 doc optional glibc-doc_2.1.2-12_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: For info see http://www.gnupg.org
iEYEARECAAYFAjiP1ioACgkQRJMoLFuwjIY7awCfagnFs7gG3+/TB50f0t7+OA10
D/8AoLBewI28w7lM7x1loq9XFKfYU/ek
=qOiu
-----END PGP SIGNATURE-----
Reply to: