Hey,

I made this hack so one can install the Hurd without getting screwed
over by /libexec/rc getting overwritten.  Now instead of tweaking
/libexec/rc, users can tweak /libexec/rc.local, and still be safe from
a overwritten /libexec/rc.

Cheers.

2004-02-27  Alfred M. Szmidt  <[EMAIL PROTECTED]>

        * rc.sh: Run /libexec/rc.local, if it exists.

Index: daemons/rc.sh
===================================================================
RCS file: /cvsroot/hurd/hurd/daemons/rc.sh,v
retrieving revision 1.23
diff -u -r1.23 rc.sh
--- daemons/rc.sh       8 Jun 2001 22:07:18 -0000       1.23
+++ daemons/rc.sh       27 Feb 2004 16:42:21 -0000
@@ -115,4 +115,9 @@
 
 echo .
 
+echo -n running local commands...
+if [ -r /libexec/rc.local ]; then
+  source /libexec/rc.local
+fi
+
 date


_______________________________________________
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd

Reply via email to