summaryrefslogtreecommitdiffstats
path: root/etc/rc.d
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate use of the early.sh script as advertised when the support fordougb2007-10-091-0/+3
| | | | | | | | | | | | | | local rc.d scripts in the overall boot order was added. Proper rc.d scripts are run by rc.subr in a subshell, whereas scripts that end in .sh are sourced into rc's shell. The latter has potential to create serious boot problems, and there is no reason that the same functionality cannot be added by the user in the form of a proper rc.d script (as opposed to being added by the user in the form of /etc/rc.early). This script will be removed prior to the 8.0 branch. Approved by: re (kensmith)
* Removing obsolete cached files after cached->nscd renaming.bushman2007-10-021-32/+0
| | | | Approved by: re (kensmith), brooks (mentor)
* Finishing renaming of cached into nscd. etc/rc.d and usr.sbin/Makefilebushman2007-09-282-5/+25
| | | | | | updated. Note added to UPDATING. Approved by: re (kensmith, bmah), brooks (mentor)
* Add the startup script for ftp-proxy(8) to the Makefile as well.mlaier2007-09-071-1/+1
| | | | | Approved by: re (bmah - implicit) Reminded by: mtm
* Add a startup script for ftp-proxy(8) now that it is no longer started asmlaier2007-09-061-0/+17
| | | | | | | | part of inetd(8). Approved by: re (bmah) Reviewed by: freebsd-rc (a while back) Reminded by: kevlo
* Start lockd after statd.mtm2007-09-031-1/+1
| | | | | Approved by: re (bmah) Noticed by: Ted Faber <faber@ISI.EDU>
* sleep 2 seconds after having loaded g_uzip.ko. We need this becausematteo2007-08-251-0/+2
| | | | | | | | otherwise the /dev/mdX.uzip won't be created immediately, which is needed because we issue a mount right afterwards. Approved by: re@ (bmah@) MFC after: 2 days
* My forced commit to note the repo-copy (naturally) changed the $FreeBSD$ ↵mtm2007-08-182-10/+22
| | | | | | | | | | keyword line, so that when I applied the patch to my check-in tree the top half of my patch failed to apply. Off course I saw what I *expected* to see (the bottom half succeeded) and didn't notice that it had failed to apply cleanly. Approved by: re (bmah)
* The rc.d/nfslocking file controls two servers: rpc.statd and rpc.lockd. It ↵mtm2007-08-174-57/+7
| | | | | | | | | | | | | | | | | worked well in most cases, except one. The 'restart' case was not working as expected. Specifically, it would stop both lockd and statd, but it would restart only statd (which appears first in the script). This is because rc.subr(8) contains code to guard against infinite recursion in the 'restart' casae. To fix this use the traditional approach of controlling only one server from one script by breaking out rc.d/nfslocking into its contituent parts: rc.d/lockd and rc.d/statd. Keep rc.d/nfslocking around but don't include it in the boot rcorder(8)ing. PR: conf/107316 Approved by: re (bmah) MFC after: 2 weeks
* - Renaming repocopied cached to nscdbushman2007-08-091-8/+8
| | | | Approved by: re (kensmith), brooks (mentor)
* Require 'cleanvar' so that files and sockets created in /var/run byjhb2007-07-251-1/+1
| | | | | | | | | wpa_supplicant and other programs started by 'netif' don't get erased by a subsequent 'cleanvar'. Approved by: re (bmah) Reviewed by: dougb MFC after: 1 week
* Add a new rc.conf variable, sendmail_rebuild_aliases, which tellsgshapiro2007-06-121-8/+10
| | | | | | | | | | | | | | | /etc/rc.d/sendmail whether or not to run newaliases if the database is missing or the aliases text file is newer than aliases.db. In my opinion, the aliases file should never be automatically rebuilt. The current text form could represent a work in progress. Therefore, in FreeBSD 7.0, this new option will default to "NO". When this rc.d change is MFC'ed, it will need to remain "YES" to maintain backward compatibility. PR: conf/86252 Approved by: re (kensmith) MFC after: 3 days
* Finish making resolv ordering deterministic by REQUIRE'ing it here.dougb2007-06-021-1/+1
|
* Add REQUIRE netif to make ordering more deterministic, and to make suredougb2007-06-021-5/+6
| | | | | | we have a fighting chance of having useful stuff from DHCP. Tighten up the code a little, and fix whitespace issues.
* Fix indentation.rse2007-05-241-1/+1
|
* Remove two superfluous trailing semicolons.rse2007-05-242-2/+2
|
* Remove two unnecessary and useless sub-shell constructs.rse2007-05-242-2/+2
|
* backout filter of Nil UUID as the boot loader code already filters out Nil ↵rse2007-05-221-4/+0
| | | | UUIDs (see src/sys/boot/i386/libi386/smbios.c:smbios_setuuid for details)
* Remove the ugly csh(1) based UUID lower-case translation hack fromrse2007-05-221-1/+0
| | | | | | /etc/rc.d/hostid now that we switched the origin of the UUID (variable smbios.system.uuid as provided by the i386 BIOS code) to already provide a standard conforming lower-case UUID text representation.
* Cleanup style by consistently using braces around variable expansion andrse2007-05-211-1/+5
| | | | | apply an addition from Andrew Thompson <thompsa> for filtering out the special "Nil" UUID (all zeros) which would be a useless host UUID.
* Adjust UUID lower-case translation from straight-forward tr(1)rse2007-05-211-1/+2
| | | | | | | | | | usage to an equivalent csh(1) usage as tr(1) stays in /usr/bin and /etc/rc.d/hostid has just the root filesystem (and this way mainly the tools in /bin) available. I've chosen csh(1) here as the string manipulation tools available in /bin is extremely limited and the (only) alternative ed(1) usage would have been a lot more complicated or even might require a temporary file.
* The standardized textual representation of UUIDs according to RFC 4122rse2007-05-211-2/+2
| | | | | | | | and ISO/IEC-9834-8:2005 is with LOWER-CASE hexadecimal characters only, so translate the (usually upper-case and this way not conforming) representation of the BIOS UUID when reading it. Also be more strict about the valid characters in the textual representation by checking for just the hexadecimal characters.
* o Implement the stop_boot subroutine [1]. This subroutine can be used bymtm2007-05-185-23/+4
| | | | | | | | | | | | | | | | | scripts in rc.d to stop rc(8) from booting into multi-user mode when a critical or severe error condition is encountered. o Modify scripts in etc/rc.d that already implemented this functionality independently. o Document it. [1] - This subroutine was implemented in FreeBSD in rc.d/fsck. I moved it to rc.subr(8). Our version differs slightly in that it takes an optional argument to stop the boot even if "autoboot" is not set. Obtained from: NetBSD MFC after: 2 weeks
* o Use the --detach option to kdc(8) instead of using the shellmtm2007-05-171-3/+3
| | | | | | | | | background operator '&'. PR: conf/102722 o No need to include $kerberos5_server_flags in $command_args as rc.subr(8) will take care of this.
* The precmd routine does not need to check whether the command should bemtm2007-05-173-24/+30
| | | | | | | | | | "forced". If some pre-condition is not met, it should fail as it normally does and rc.subr(8) will make the appropriate decision. Incidentally, the previous behaviour had a bug where the "force" flag was respected only when checking rc.conf(5) knobs. The flag was ignored when verifying the rpcbind(8) dependency. MFC after: 2 weeks
* Move options that do not have anything to do with routing out ofmtm2007-05-022-42/+43
| | | | | rc.d/routing and in to rc.d/netoptions. Also instead of saying "TCP options" say "IP options".
* When rc.d/NETWORKING included this script in its REQUIRE line, a circularmtm2007-05-021-1/+1
| | | | | | | | dependency was introduced because this script had rc.d/localpkg (which is *after* rc.d/NETWORKING) in its REQUIRE line. From an examination of its contents it seems that only the availability of a local filesystem is necessary for this script to function properly.
* When zfs dataset has jailed=on property, it won't be mounted withpjd2007-04-221-3/+34
| | | | | | | 'zfs mount -a' from the main system - this is by design, as mountpoint may be set to dangerous value. This all means, that such file system has to be mounted from within a jail. To make it easier, reorganize rc.d/zfs script so it can be used from within a jail.
* When org.freebsd:swap property is set to 'on' on a ZVOL, use is as a swappjd2007-04-151-0/+18
| | | | | | device. Discussed with: des
* Remove the shutdown keyword. It just adds noise to the shutdown process.des2007-04-131-1/+1
|
* - Create an empty /etc/zfs/exports file when zfs_enable="YES" and we don'tpjd2007-04-131-2/+5
| | | | | | | | | | NFS-share anything. This way we can safely start mountd with /etc/zfs/exports and mountd won't complain. Pointed out by: ceri - Move 'zfs volinit' before 'zfs mount -a' and 'zfs volfini' after 'zfs unmount -a'.
* mountd(8) was changed to only abort when all given exports files cannot bepjd2007-04-131-1/+1
| | | | open, so we not longer has to check if /etc/zfs/exports exists.
* o Look for a zfs(1) exports file only if it exists and is readable. Ifmtm2007-04-131-1/+2
| | | | | we don't do this and the file doesn't exist mountd(8) will abort. o The mountd(8) daemon creates a pidfile, so use it.
* If available, take UUID from smbios.system.uuid, if not fall back topjd2007-04-111-1/+18
| | | | | | | | | software-generated UUID. Store the result in /etc/hostid and use it in the future. Perform simple UUID format check, as there is a lot of hardware with broken UUIDs. The check should be improved to also eliminate fake UUIDs like 00000000-0000-0000-0000-000000000000. Requested by: many
* Add a pfsync_syncpeer option to /etc/defaults/rc.conf and rc.conf(5),keramida2007-04-101-1/+6
| | | | | | | | | | | which can be used to turn off multicast pfsync support, and enable the transmission of directed PFSYNC (IP protocol: 240) packets to a specific "sync peer" host. PR: conf/111225 Submitted by: Bas van Beek <bas@tobin.nl> Approved by: mtm, mlaier MFC after: 2 weeks
* Add rc.d/hostid script (turned on by default) which on first boot generatespjd2007-04-092-1/+81
| | | | | | | | | | | | UUID and stores it in /etc/hostid ($hostid_file) as well as sets kern.hostuuid and kern.hostid sysctls on every boot. Hostid can be reset using '/etc/rc.d/hostid reset' command. Hostid generation and setting can be turned off by setting variable hostid_enable to "NO" in /etc/rc.conf. Reviewed by: mlaier, rink, brooks, rwatson
* Apply "additional TCP options" earlier.des2007-04-092-2/+1
| | | | | Requested by: andre@ MFC after: 1 week
* FILESYSTEMS requires root, so requiring both of them is redundant.des2007-04-097-7/+7
|
* Add zfs to REQUIRE.des2007-04-091-1/+1
|
* - Add ZFS startup script.pjd2007-04-063-1/+40
| | | | | | | Submitted by: des - When starting mountd(8) and ZFS is enabled, add /etc/zfs/exports file. - Update rc.conf(5).
* Add rpc_statd_flags and rpc_lockd_flags options to allow options to bematteo2007-04-043-0/+24
| | | | | | passed to rpc.statd and rpc.lockd MFC after: 1 week
* Add a dummy script, FILESYSTEMS, which depends on root and mountcritlocaldes2007-04-0221-20/+32
| | | | | | | | | | | | and takes over mountcritlocal's role as the early / late divider. This makes it far easier to add rc scripts which need to run early, such as a startup script for zfs, which is right around the corner. This change should be a no-op; I have verified that the only change in rcorder's output is the insertion of FILESYSTEMS immediately after mountcritlocal. MFC after: 3 weeks
* Instead of directly sourcing the firewall script, run it in a separate shell.mtm2007-04-022-2/+2
| | | | | | | | If the firewall script is sourced directly from the script, then any exit statements in it will also terminate the rc.d script prematurely. PR: conf/78762 MFC-After: 2 weeks
* Make subroutine names more conformant with other scripts in rc.d.mtm2007-03-311-4/+4
| | | | MFC After: 2 weeks
* Record rc.d/nfslocking dependency on rc.d/rpcbind.mtm2007-03-303-12/+54
| | | | | | PR: conf/105465 Submitted By: ru (with minor cosmetic change) MFC-After: 1 month
* Some rc.d commands (such as stop|restart etc.) won't automagically workmtm2007-03-301-0/+1
| | | | | | if we don't explicitly set the name of the executable program. PR: conf/104408
* Use "-ne" instead of "!=" for integer comparison.brooks2007-03-251-1/+1
|
* Having gone to the trouble of setting up a variable, we should use it.mtm2007-03-251-1/+1
|
* Make "/etc/rc.d/syscons start" correctly reload screensaver settings.mux2007-03-121-1/+1
| | | | | | | | | | The code looks for all the loaded screensaver modules, tries to kldunload them, and only loads the new one if kldstat's output shows that there aren't any left. However, the regexp looking for modules to unload was still searching according to the the old naming scheme, splash_<name>.ko, instead of <name>_saver.ko. MFC after: 3 days
* Allow background_fsck_delay to be set to a negative value which delaysbrooks2007-03-111-2/+14
| | | | | | | the background fsck indefinitely. This allows the administrator to run it at a convenient time. To support running it from cron, the forcestart argument now causes the fsck to start with no delay and all output to be suppressed.
OpenPOWER on IntegriCloud