diff options
author | Guillem Jover <guillem@debian.org> | 2004-09-09 18:09:56 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2004-09-09 18:09:56 +0000 |
commit | 978df42a48f2256446ab00285a68f95f3252f883 (patch) | |
tree | 661d166ab02f08de8b3a116efe649a484c48404a /debian | |
parent | b75f344204a58d2eec537e843c0f613966ac1a37 (diff) |
Import new release.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 9 | ||||
-rw-r--r-- | debian/hurd.postinst | 2 | ||||
-rw-r--r-- | debian/local/rc | 2 | ||||
-rw-r--r-- | debian/patches/startup-usr-support.patch | 21 |
4 files changed, 32 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 6062450f..cd2fd4de 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +hurd (20040508-2) unstable; urgency=low + + * Fix typo in postinst. (Closes: #253662) + Thanks to Michael Banck. + * Support /usr tree in startup scripts (Closes: #229572) + Thanks to Guillem Jover + + -- Jeff Bailey <jbailey@raspberryginger.com> Fri, 11 Jun 2004 11:17:26 -0400 + hurd (20040508-1) unstable; urgency=low * New snapshot from CVS. diff --git a/debian/hurd.postinst b/debian/hurd.postinst index f066a6ef..8ec6895b 100644 --- a/debian/hurd.postinst +++ b/debian/hurd.postinst @@ -6,7 +6,7 @@ update-alternatives --quiet \ --install /libexec/runsystem runsystem /libexec/runsystem.gnu 20 if ! grep --quiet '^login:' /etc/passwd; then - adduser --quiet --system --home /etc/login --gecos "Not logged in" --not-create-home login + adduser --quiet --system --home /etc/login --gecos "Not logged in" --no-create-home login chsh -s /bin/bash login fi diff --git a/debian/local/rc b/debian/local/rc index d56a5f3f..42609d01 100644 --- a/debian/local/rc +++ b/debian/local/rc @@ -1,5 +1,5 @@ #!/bin/bash -PATH=/bin:/sbin +PATH=/bin:/sbin:/usr/bin:/usr/sbin # Start the default pager. It will bail if there is already one running. /hurd/mach-defpager diff --git a/debian/patches/startup-usr-support.patch b/debian/patches/startup-usr-support.patch new file mode 100644 index 00000000..f5255f40 --- /dev/null +++ b/debian/patches/startup-usr-support.patch @@ -0,0 +1,21 @@ +--- daemons/rc.sh.old 2004-06-11 13:31:03.030701904 -0400 ++++ daemons/rc.sh 2004-06-11 13:31:14.870307857 -0400 +@@ -1,6 +1,6 @@ + #!/bin/bash + +-PATH=/bin:/sbin ++PATH=/bin:/sbin:/usr/bin:/usr/sbin + + # Start the default pager. It will bail if there is already one running. + /hurd/mach-defpager +--- daemons/runsystem.sh.old 2004-06-11 13:31:07.771817617 -0400 ++++ daemons/runsystem.sh 2004-06-11 13:31:25.036119303 -0400 +@@ -11,7 +11,7 @@ + ### Where to find programs, etc. + ### + +-PATH=/bin:/sbin ++PATH=/bin:/sbin:/usr/bin:/usr/sbin + export PATH + + # If we lose badly, try to exec each of these in turn. |