summaryrefslogtreecommitdiffstats
path: root/etc/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Arm doesn't have GENERIC.hints, so don't install it if it doesn't exist.imp2007-07-131-0/+2
| | | | Approved by: re (kensmith)
* Add a namedb/master directory for the zone files I'm about to add,dougb2007-06-181-15/+9
| | | | | and switch to the more "normal" way of installing files for the namedb directory so that we can pick up the new subdir.
* Summer of Code 2005: improve libalias - part 1 of 2piso2006-09-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the first part of my previous Summer of Code work, we get: -made libalias modular: -support for 'particular' protocols (like ftp/irc/etcetc) is no more hardcoded inside libalias, but it's available through external modules loadable at runtime -modules are available both in kernel (/boot/kernel/alias_*.ko) and user land (/lib/libalias_*) -protocols/applications modularized are: cuseeme, ftp, irc, nbt, pptp, skinny and smedia -added logging support for kernel side -cleanup After a buildworld, do a 'mergemaster -i' to install the file libalias.conf in /etc or manually copy it. During startup (and after every HUP signal) user land applications running the new libalias will try to read a file in /etc called libalias.conf: that file contains the list of modules to load. User land applications affected by this commit are ppp and natd: if libalias.conf is present in /etc you won't notice any difference. The only kernel land bit affected by this commit is ng_nat: if you are using ng_nat, and it doesn't correctly handle ftp/irc/etcetc sessions anymore, remember to kldload the correspondent module (i.e. kldload alias_ftp). General information and details about the inner working are available in the libalias man page under the section 'MODULAR ARCHITECTURE (AND ipfw(4) SUPPORT)'. NOTA BENE: this commit affects _ONLY_ libalias, ipfw in-kernel nat support will be part of the next libalias-related commit. Approved by: glebius Reviewed by: glebius, ru
* Add FreeBSD Update 2.0 client code. The build code is in the projectscperciva2006-08-311-1/+2
| | | | | | repository. Sponsored by: FreeBSD security development fundraiser
* Install /etc/nsswitch.conf statically rather than generating it atume2006-05-031-2/+2
| | | | | | | | boot. Autogeneration of nsswitch.conf doesn't makes sense in 7.0 since it's not permitted to upgrade from a pre-nss release without passing through an intermediate release. Suggested by: brooks
* - Extend the nsswitch to support Services, Protocols and Rpcume2006-04-281-0/+4
| | | | | | | | databases. - Make nsswitch support caching. Submitted by: Michael Bushkov <bushman__at__rsu.ru> Sponsored by: Google Summer of Code 2005
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-24/+22
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Fix "make distribution" when just NO_CRYPT is defined.ru2006-03-111-1/+1
| | | | | | PR: misc/94309 Submitted by: Matthias Lederhofer MFC after: 3 days
* Install audit_control and audit_user, both of which are likely to berwatson2006-02-121-1/+1
| | | | | | modified by the administrator, as user-writable instead of read-only. Obtained from: TrustedBSD Project
* Install /etc/security configuration files from OpenBSM.rwatson2006-02-021-0/+15
| | | | Obtained from: TrustedBSD Project
* Add a new extensible GSS-API layer which can support GSS-API plugins,dfr2005-12-291-0/+1
| | | | | | | | | similar the the Solaris implementation. Repackage the krb5 GSS mechanism as a plugin library for the new implementation. This also includes a comprehensive set of manpages for the GSS-API functions with text mostly taken from the RFC. Reviewed by: Love Hörnquist Åstrand <lha@it.su.se>, ru (build system), des (openssh parts)
* Remove usbd(8) and all references to it. It is no longer necessaryiedowse2005-12-151-1/+1
| | | | | | since devd(8) now provides the same functionality. Submitted by: Anish Mistry
* Diff reduction to RELENG_6.ru2005-11-161-4/+4
|
* Allow one to override the endian flags for make distribution. Thisimp2005-08-261-5/+6
| | | | | | | | can be useful for when you know that you are doing something that won't work with the standard settings and different settings are more appropriate. This allows 5.3 tools to build a 6.x userland when these values are set to null.
* Add portsnap to the base system. This is a secure, easy to use,cperciva2005-08-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | fast, lightweight, and generally good way for users to keep their ports trees up to date. This is version 0.9.4 from the ports tree (sysutils/portsnap) with the following changes: 1. The experimental pipelined http code is enabled. No seatbelts in -CURRENT. (^_^) 2. The working directory has moved from /usr/local/portsnap to /var/db/portsnap (as discussed on -arch two days ago). 3. Portsnap now fetches a list of mirrors (distributed as DNS SRV records) and selects one randomly. This should help to avoid the uneven loading which plagues the cvsup mirror network. 4. The license is now 2-clause BSD instead of 3-clause BSD. 5. Various incidental changes to make portsnap fit into the base system's build mechanics. X-MFC-After: 6.0-RELEASE X-MFC-Before: 5.5-RELEASE X-MFC-To: RELENG_6, RELENG_5, ports discussed on: -arch and several other places "yes please" from: simon, remko, flz, Diane Bruce thinks this is a great idea: bsdimp Hopes he didn't forget any files: cperciva
* Require that DESTDIR be set before running "make distribution".ru2005-07-221-0/+4
|
* Pass -i to pwd_mkdb(8) to ignore locking failures. This can be usefulru2005-07-151-1/+1
| | | | for NFS installing world/kernel to another machine.
* To allow /etc to be as minimal as possible in a diskless setup, we needbrooks2005-04-291-1/+2
| | | | | | | | | | | | | to run initdiskless before we run rcorder on /etc/rc.d. To allow this, move /etc/rc.d/initdiskless to /etc/rc.initdiskless and run it directly from /etc/rc. Remove /etc/rc.d/preseedrandom as it is no longer necessicary (we start with entropy unblocked) and was only used by initdiskless when it was needed. Discussed on: freebsd-rc Repocopy by: peter
* Add startup script and default configuration file for bsnmpd.glebius2005-04-171-2/+2
| | | | Reviewed by: harti
* Remove a number of entries from the distribution target that arebrooks2005-03-021-26/+0
| | | | | | | | | automaticly created at boot. There's no need to maintain a list of files and permissions in multiple places. This also means binary updates won't stomp on log files. For the record, utmp is created in etc/rc.d/cleanvar, wtmp and lastlog in etc/rc.d/var, and the reset via etc/rc.d/newsyslog.
* Add rc.bsdextended. It's been tested enough.trhodes2005-03-011-1/+1
|
* Bootstrap pwd_mkdb(8) and use its new feature during "make distribute".ru2005-02-281-1/+4
|
* Step 1/2 of making "make distribute" work for cross-builds.ru2005-02-281-1/+10
|
* NOCRYPT -> NO_CRYPTru2004-12-211-1/+1
|
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-211-1/+1
| | | | OK'ed by: core
* 1. Incorporate most of Ruslan's improvements to where and how thedougb2004-10-081-2/+11
| | | | | | | | | | | | | | | /etc/namedb symlink is created. 2. Incorporate Brian's suggestion to make the link relative. This is necessary to handle situations (such as mergemaster) where the user is building a tree in a seperate environment. This will also fix the problem with the way DESTDIR is set in 'make release'. 3. Add a new knob, NO_BIND_MTREE, as suggested by the folks who already have stuff in /var/named that they don't want me to mess with. 4. Update make.conf(5) with the new stuff, and correct a few paths that have changed since I last updated it.
* Fixed symlinking of /etc/namedb.ru2004-10-051-1/+1
| | | | Reported by: Jeremy Chadwick
* Install namedb stuff to ${DESTDIR}/var/named/etc/namedb insteaddougb2004-09-301-1/+1
| | | | | | | | of relying on the symlink in ${DESTDIR}/etc/namedb. This is functionally equivalent, but doesn't rely on the symlink to work. Requested by: ru
* Fixed symlinking /var/named/etc/namedb to /etc/namedb.ru2004-09-291-1/+1
| | | | | A second "make distrib-dirs" createed a symlink in /var/namedb/etc/namedb. A third "make distrib-dirs" failed.
* Create a named chroot directory structure in /var/named, and use itdougb2004-09-281-4/+9
| | | | | | | | | | | | | | | | by default when named is enabled. Also, improve our default directory layout by creating /var/named/etc/namedb/{master|slave} directories, and use the former for the generated localhost* files. Rather than using pax to copy device entries, mount devfs in the chroot directory. There may be some corner cases where things need to be adjusted, but overall this structure has been well tested on a production network, and should serve the needs of the vast majority of users. UPDATING has instructions on how to do the conversion for those with existing configurations.
* 1. Add much finer granularity to the NO_BIND knobs with the addition of:dougb2004-09-271-0/+14
| | | | | | | | | NO_BIND_DNSSEC, NO_BIND_ETC, NO_BIND_NAMED, and NO_BIND_UTILS. 2. Make creation of directories in /usr/include that are only needed in the WITH_BIND_LIBS case conditional. Reviewed by: ru, des
* Reconnect namedb. While it may not be optimal, our old named.conf fromdes2004-09-241-2/+0
| | | | BIND 8 is quite usable for BIND 9.
* Switch from BIND 8 to BIND 9.des2004-09-211-0/+2
| | | | | | Submitted by: (in part) dougb@, trhodes@ Reviewed by: dougb@, trhodes@, re@ MFC after: 5 days
* Drop the -d argument to mtree since some of the spec files now listdes2004-03-231-4/+4
| | | | symlinks.
* I believe most of /boot/device.hints out there are based (if notru2004-03-141-3/+3
| | | | | | | | identical) on GENERIC.hints, hence the following change: Moved the creation of /boot/device.hints where it belongs. This should aid in merging GENERIC.hints changes to /boot/device.hints, using mergemaster(8) or a similar approach.
* Link pf to the build and install:mlaier2004-03-081-1/+1
| | | | | | | | | | | | | | | | This adds the former ports registered groups: proxy and authpf as well as the proxy user. Make sure to run mergemaster -p in oder to complete make installworld without errors. This also provides the passive OS fingerprints from OpenBSD (pf.os) and an example pf.conf. For those who want to go without pf; it provides a NO_PF knob to make.conf. __FreeBSD_version will be bumped soon to reflect this and to be able to change ports accordingly. Approved by: bms(mentor)
* - Run makewhatis(1) in etc/Makefile at the end of "install".ru2004-01-221-3/+6
| | | | - Removed redundant and undocumented NO_MAKEDB_RUN knob.
* Get moduli from the OpenSSH sources instead of keeping a local copy.des2004-01-071-1/+1
|
* Use a better way to take NO_LPR into account, and correctly check themarkm2003-11-021-6/+4
| | | | | | NOCRYPT macro when looking at crypto. Reminded by: ru
* Connect /etc/bluetooth and /usr/share/examples/netgraph/bluetooth to the build.emax2003-10-261-0/+1
| | | | | Reviewed by: imp, simon Approved by: imp (mentor)
* Only install .k5login if people have not set NO_KERBEROS.phk2003-10-031-2/+5
|
* Don't install etc/printcap in the NO_LPR case; ports like 'cups'markm2003-09-271-1/+6
| | | | make their own etc/printcap if they need it.
* Remove excess paranoia. There is no need to chech for the crypto/ dirmarkm2003-09-181-2/+2
| | | | any more, and this check has been removed elsewhere.
* o Do not keep a separate list of src/etc/defaults files inmtm2003-08-241-6/+3
| | | | | | | | | | the src/etc makefile. This list was used to manually install the files from src/etc. Instead, simply change directory and 'make install'. o There is no reason for the files in src/etc/defaults to be installed as writeable. Reviewed by: ru
* Don't hardcode owner 'root' and group 'wheel'.obrien2003-08-181-1/+1
| | | | Submitted by: Ulrich Spoerlein <q@uni.de>
* Do not install sendmail example/infrastructure files if NO_SENDMAIL isgshapiro2003-07-061-0/+4
| | | | | | | | | defined. The only two files installed in this case are aliases (which I believe other MTAs may use) and mailer.conf (which isn't sendmail, it belongs to mailwrapper). PR: 50477 MFC after: 5 days
* Old-promised removing of deprecated locale namesache2003-06-101-21/+0
|
* Hook devfs.conf up to the build.dougb2003-05-061-2/+2
| | | | Approved by: re (scottl)
* Hook rc.sendmail back up, it was removed prematurelydougb2003-05-021-1/+1
|
* Per previous announcement, remove the old version of the rc system.dougb2003-05-021-8/+2
| | | | | | | | | | All functionality from the previous system has been preserved, and users should still customize their system boot with the familiar methods, rc.conf, rc.conf.local, rc.firewall, sysctl.conf, etc. Users who have customized versions of scripts that have been removed should take great care when upgrading, since the compatibility code that used those old scripts has also been removed.
OpenPOWER on IntegriCloud