From d1f9da0af2a53b7df2996466f2f23c199f3675fd Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Fri, 6 Nov 2009 20:24:25 -0500 Subject: [PATCH] Nuke old dev bootstrap code that is no longer in use --- etc/rc.initial | 52 ++++++++++++++------------------------------------ 1 file changed, 14 insertions(+), 38 deletions(-) diff --git a/etc/rc.initial b/etc/rc.initial index 5463a3dbd0..7485e0dec8 100755 --- a/etc/rc.initial +++ b/etc/rc.initial @@ -1,5 +1,19 @@ #!/bin/sh +# $Id$ +# /etc/rc.initial +# part of pfSense by Scott Ullrich +# Copyright (C) 2004 Scott Ullrich, All rights reserved. +# originally based on m0n0wall (http://neon1.net/m0n0wall) +# Copyright (C) 2003-2004 Manuel Kasper . +# All rights reserved. + +# make sure the user can't kill us by pressing Ctrl-C, +# ctrl-z, etc. +#trap : 2 +#trap : 3 +#trap : 4 + # If recovery console shell option has been specified if [ -f "/tmp/donotbootup" ]; then /usr/bin/env prompt="%B[%n@%m]%b%/(%h)||RecoveryConsoleShell: " /bin/tcsh @@ -10,44 +24,6 @@ if [ -f "/tmp/donotbootup" ]; then exit fi -# $Id$ -# /etc/rc.initial -# part of pfSense by Scott Ullrich -# Copyright (C) 2004 Scott Ullrich, All rights reserved. -# originally based on m0n0wall (http://neon1.net/m0n0wall) -# Copyright (C) 2003-2004 Manuel Kasper . -# All rights reserved. - -if [ -e /usr/local/etc/rc.d/dev_bootstrap.sh ]; then - echo - echo "A developer bootstrap is most likely in progress." - echo "This operation bootstraps all developer files from" - echo "pfSense.com and also FreeBSD.org and builds a ISO" - echo "to verify the environment is sane." - echo - echo "During this process, /usr/src is automatically downloaded" - echo "and many supporting files are built, installed, etc." - echo - echo -n "Would you like to tail the progress (y/n) [n]? " - read ANSWER - if [ "$ANSWER" = "y" ]; then - echo - echo "Tailing developer bootstrap process." - echo - echo "Press CTRL-C to abort." - echo - echo "Note, this tailing process will exit once the operation is completed." - echo - tail -f /tmp/bootup_messages - fi -fi - -# make sure the user can't kill us by pressing Ctrl-C, -# ctrl-z, etc. -#trap : 2 -#trap : 3 -#trap : 4 - CONFIG="/cf/conf/config.xml" WORD="https"