Package: base-files Version: 5.0.0 Severity: normal -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
See attachment. - -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.30-020630-generic (SMP w/1 CPU core) Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages base-files depends on: ii base-passwd 3.5.21 Debian base system master password ii mawk [awk] 1.3.3-15 a pattern scanning and text proces base-files recommends no packages. base-files suggests no packages. - -- no debconf information -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkqm5pcACgkQeXr56x4Muc3nbQCdHYOBgB9FR9xfevUfMDz8Q2EA C7AAoJSwxgnmafKpd4v+oIu6aKN9f0RE =70FY -----END PGP SIGNATURE-----
diff -Nru base-files-5.0.0/debian/changelog base-files-5.0.0+nmu1/debian/changelog --- base-files-5.0.0/debian/changelog 2009-04-24 19:03:59.000000000 +0000 +++ base-files-5.0.0+nmu1/debian/changelog 2009-09-08 23:16:14.000000000 +0000 @@ -1,3 +1,10 @@ +base-files (5.0.0+nmu1) unstable; urgency=low + + * Non-maintainer upload. + * Implemented support for sourcing /etc/profile.d/*.sh (Closes: #545756). + + -- Martin-Éric Racine <q-f...@iki.fi> Tue, 08 Sep 2009 23:14:44 +0000 + base-files (5.0.0) unstable; urgency=low * Drop README.base, remove-base, and the lines in postinst which checked diff -Nru base-files-5.0.0/share/profile base-files-5.0.0+nmu1/share/profile --- base-files-5.0.0/share/profile 2006-10-28 13:42:16.000000000 +0000 +++ base-files-5.0.0+nmu1/share/profile 2009-09-08 23:14:10.000000000 +0000 @@ -19,6 +19,17 @@ fi fi +if [ -d /etc/profile.d ]; then + for i in /etc/profile.d/*.sh; do + if [ -r $i ]; then + . $i + fi + done + unset i +fi + export PATH umask 022 + +#EOF