summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Rename the ftp log filename for compatability with OpenBSD and NetBSD.markm2002-09-213-3/+3
| | | | Requested by: ru
* Install empty ftp.log file to start off ftp logging.markm2002-09-201-0/+2
|
* Log ftpd stuff in the same way that we log lpd stuff. Too many ftpd'smarkm2002-09-202-0/+2
| | | | are attacked for us to throw away this sort of evidence.
* up gif during setup.ume2002-09-203-0/+3
|
* Quiet warnings on shutdown.gordon2002-09-191-1/+1
|
* Unbreak installworld.truckman2002-09-191-0/+4
| | | | | Apparently /usr/include/dev grew a couple of subdirectories, but nobody informed mtree.
* Add some extra directories created by recent versions of XFree86-4kris2002-09-191-0/+10
| | | | | Reviewed by: anholt (XFree86-4 maintainer) MFC after: 1 day
* Fix implementation of rc variables $amd_flags and $amd_map_program inrse2002-09-181-2/+2
| | | | | | | rcNG. The $amd_flags variable was already taken over into $rc_flags by run_rc_command() when amd_precmd() is executed, so changing $amd_flags there no longer effects the actual execution of amd. Hence in amd_precmd() the $rc_flags have to be adjusted instead.
* MFC: Elan support;sam2002-09-171-0/+6
| | | | | | | | | | o Recognize AMD Elan SC520 hostbridge. o Add initialization code for the AMD Elan sc520 which maps the MMCR into KVM and sets the i8254 frequency to the correct value. o MAKEDEV entry for elan-mmcr device Reviewed by: phk, jhb Approved by: re(jhb)
* Initiate deorbit burn for the i386-only a.out related support. Moves arepeter2002-09-174-31/+16
| | | | | | | | | | | | | | | under way to move the remnants of the a.out toolchain to ports. As the comment in src/Makefile said, this stuff is deprecated and one should not expect this to remain beyond 4.0-REL. It has already lasted WAY beyond that. Notable exceptions: gcc - I have not touched the a.out generation stuff there. ldd/ldconfig - still have some code to interface with a.out rtld. old as/ld/etc - I have not removed these yet, pending their move to ports. some includes - necessary for ldd/ldconfig for now. Tested on: i386 (extensively), alpha
* Fix sendmail to use checkyesno since rc.conf is no longer re'sourced from thegordon2002-09-121-6/+2
| | | | debug statement.
* Use bzip2 instead of gzip for those logs we compress.obrien2002-09-121-15/+15
| | | | Basic idea agreed to by: rwatson
* Remove the sourceing of rc.conf from the debug subroutine. This causedgordon2002-09-121-5/+0
| | | | problems when you try to override variables locally.
* Cosmetic cleanup to a message.jhb2002-09-111-1/+1
|
* Quiet warnings about non-existent scripts. My own fault for not testing mygordon2002-09-111-1/+1
| | | | own patches as well as I should.
* Fix syscons so it actually does start.gordon2002-09-091-1/+3
| | | | | Reported by: keramida, ume Submitted by: keramida
* Add an entry for corega WL PCCL-11.iwasaki2002-09-061-0/+6
| | | | | | | PR: conf/42481 Submitted by: NINOMIYA Hideyuki <nin@jp.FreeBSD.org> Approved by: imp MFC after: 1 week
* Convert from `${CMD_OSTYPE}` to ${OSTYPE}. This saves a shell invocation ongordon2002-09-0641-59/+59
| | | | OS-dependent case switches.
* Add a support for a ${OSTYPE} which is set once in /etc/rc.subr. Also convertgordon2002-09-061-3/+4
| | | | | | all instances of `${CMD_OSTYPE}` to just using ${OSTYPE}. This saves us a shell invocation on anything that is OS-dependent. I seriously doubt that we will be spontaneously changing OS types during bootup.
* rev 1.6 claimed to add 'bootparams', but in fact added 'bootparamd' whichpeter2002-09-061-1/+1
| | | | does not exist.
* Only try to initialize syscons if /dev/ttyv0 exists and it's not a pcvt.fenner2002-09-051-140/+156
|
* Only try to run /usr/sbin/ispcvt if it exists and is executable.fenner2002-09-051-1/+9
|
* Add an archdep script and hook it up to the build.gordon2002-09-052-11/+93
| | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* Hook bootparams up to the worldgordon2002-09-051-11/+11
|
* Introduce bootparamd into the boot scripts. Add a bootparamd_enable andgordon2002-09-052-2/+13
| | | | | | _flags to rc.conf Submitted by: John Hay <jhay@zibbi.icomtek.csir.co.za>
* Deprecate the use of sendmail_enable="NONE" as it adversely affects thegshapiro2002-09-031-2/+1
| | | | | | new rcNG effort. Submitted by: Mike Makonnen <makonnen@pacbell.net>
* nfsd doesn't die on SIGTERM but on SIGUSR1, correct script to kill nfsd withgordon2002-09-031-0/+1
| | | | the right signal.
* We don't use single_mountd_enable anymore. It's just mountd_enable. I mustgordon2002-09-021-1/+1
| | | | have missed this in my earlier sweep.
* Only install the scripts that actually used on FreeBSD.gordon2002-09-021-15/+12
|
* Commit a revised sendmail script that works the same way as rc.sendmail.gordon2002-09-021-30/+43
| | | | This should also quell warnings when sendmail_enable="NONE"
* Turn rc_ng on by default now, it's time has come. While we are at it, I'dgordon2002-09-021-1/+1
| | | | | like to thank Mike Makonnen for all his work on rcNG. Without him, none of this would have been possible.
* establish default values for /etc/rc.d/pcvt scripthm2002-08-301-0/+18
|
* integrate pcvt configuration into the new /etc/rc.d startup systemhm2002-08-302-1/+227
| | | | | PR: i386/7100 Reviewed by: Gordon Tetlow <gordon@FreeBSD.org>
* Only create a temporary file if we are actually going to do somethingcjc2002-08-257-7/+7
| | | | | | | | | in the script. Eliminates a bug where we create a temp file, but don't delete it since the rm(1) is only done if the check is enabled. PR: bin/40960 Submitted by: frf <frf@xocolatl.com> MFC after: 3 days
* Print out a carriage return to make the screen output make more sensegordon2002-08-201-1/+1
| | | | Submitted by: mike@
* I missed the single_mountd_enable in rc.network.gordon2002-08-151-1/+1
| | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* Remove an accidental double chkdepend that snuck in during the last commit.gordon2002-08-151-1/+0
| | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* Don't export variables from /etc/rc when doing rc_ng because the scriptsgordon2002-08-141-2/+0
| | | | | | are sourced in a subshell. Submitted by: Mike Makonnen <makonnen@pacbell.net>
* Clean up the scripts to use the new variables:gordon2002-08-1412-51/+100
| | | | | | | | | | | | | | | | xntpd_* -> ntpd_* portmap_* -> rpcbind_* Also change single_mountd_enable -> mountd_enable Changing the mountd flags brings us closer to NetBSD. All of the old variable names are shimmed so you can continue to use the old variable name. Finally make /etc/rc.d/mountd no longer dependent on nfs as there are (apparently) other consumers of mountd. Submitted by: Mike Makonnen <makonnen@pacbell.net>
* Clean up some variables that should have been done before:gordon2002-08-143-14/+40
| | | | | | | | | | | xntpd_* -> ntpd_* portmap_* -> rpcbind_* Also change single_mountd_enable to mountd_enable. We also include shims for all the old variable names. Submitted by: Mike Makonnen <makonnen@pacbell.net>
* o Test and change to the correct directory, /var/spool/.hoststatschweikh2002-08-121-8/+5
| | | | | | | | o Bring if/then style in sync with /etc/rc scripts PR: conf/41570 Submitted by: Konstantin M Volevatch <cox@rosnet.ru> MFC after: 1 week
* Fix typos (s/seperat/separat/ et al); add FreeBSD ID.schweikh2002-08-121-5/+5
| | | | | Suggested by: bde MFC after: 3 days
* Remove some unnecessary sanity checks that break "sh MAKEDEV cd"iedowse2002-08-101-4/+4
| | | | | | | | | | and others, because test(1) does not do shortcut evaluation. Fix the same off-by-one error for acd*t* that revision 1.326 fixed for other *cd devices. Suggested by: bde Reviewed by: bde
* Permit the creation of just cd0 if desired. Previously it alwaysiedowse2002-08-101-1/+1
| | | | | | | | | created cd1 as well due to an off-by-one error left over from revision 1.249. PR: conf/20436 Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de> MFC after: 1 week
* Remove trailing whitespace.fanf2002-08-091-1/+1
|
* Make the othermta script DTRT when an mta startup script is not specified.gordon2002-08-091-1/+4
| | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* Correct comment. We use rpcbind now, not portmapgordon2002-08-091-1/+1
| | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* Correct commentgordon2002-08-092-2/+2
| | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* We no longer have a COPY.ru2002-08-071-3/+0
|
* Add example entries for ttya and ttyb (sab).jake2002-08-041-0/+2
|
OpenPOWER on IntegriCloud