summaryrefslogtreecommitdiffstats
path: root/etc/mtree/BSD.root.dist
Commit message (Collapse)AuthorAgeFilesLines
* MFC r318861:trasz2017-06-061-0/+2
| | | | | | Create /net by default, for autofs. Approved by: re (kib)
* MFC r308160:bapt2016-11-161-0/+2
| | | | | | | | | | | | | | | | | | | | syslogd(8): add an 'include' keyword All the '.conf' files not beginning with a '.' contained int he directory following the keyword will be included. This keyword can only be used in the first level configuration files. Modify the default syslogd.conf to 'include' /etc/syslog.d and /usr/local/etc/syslog.d It simplify a lot handling of syslog from automation tools. Reviewed by: markj, kib (via irc) Approved by: markj MFC after: 2 weeks Relnotes: yes Differential Revision: https://reviews.freebsd.org/D8402
* MFC r308139, r308157-r308158bapt2016-11-161-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | r308139: cron(8): add support for /etc/cron.d and /usr/local/etc/cron.d For automation tools it is way easier to maintain files in directories rather than modifying /etc/crontab. The files in those directories are in the same format as /etc/crontab Reviewed by: adrian MFC after: 2 weeks Relnotes: yes Sponsored by: Gandi.net Differential Revision: https://reviews.freebsd.org/D8400 r308157: Fix typo in cron(8) date Reported by: jilles r308158: Allow symlinks to be followed in cron.d directories and fix detection of regular files on NFS Reported by: jilles
* Convert casperd(8) daemon to the libcasper.oshogbo2016-02-251-2/+2
| | | | | | | | | | | | | | | | | | | | After calling the cap_init(3) function Casper will fork from it's original process, using pdfork(2). Forking from a process has a lot of advantages: 1. We have the same cwd as the original process. 2. The same uid, gid and groups. 3. The same MAC labels. 4. The same descriptor table. 5. The same routing table. 6. The same umask. 7. The same cpuset(1). From now services are also in form of libraries. We also removed libcapsicum at all and converts existing program using Casper to new architecture. Discussed with: pjd, jonathan, ed, drysdale@google.com, emaste Partially reviewed by: drysdale@google.com, bdrewery Approved by: pjd (mentor) Differential Revision: https://reviews.freebsd.org/D4277
* Create a /boot/dtb directory to house DTB blobs. The flattened deviceimp2014-09-031-0/+2
| | | | | | | | | | | tree support includes a device tree source compiler dtc(8) which converts .dts files into .dtb files. /boot/loader will load dtb files from this directory by default, allowing for fewer differences between images for different SoCs. Compiled dts files will wind up here eventually as an alternative to embedding them into the kernel. Document this in hier(7), as well as add missing entries for /boot/firmware and /boot/zfs, though the latter two should only be considered place holders if someone wants to make them better.
* Add support for /etc/rc.conf.d/<service> subdirectories. This isdes2014-08-231-0/+2
| | | | | | | | particularly useful for services such as "network" (netif) where each interface can now have its own separate configuration file. Add /etc/rc.conf.d to the mtree file so it is always present. MFC after: 3 days
* Bring in the new automounter, similar to what's provided in most othertrasz2014-08-171-0/+2
| | | | | | | | | | | | | UNIX systems, eg. MacOS X and Solaris. It uses Sun-compatible map format, has proper kernel support, and LDAP integration. There are still a few outstanding problems; they will be fixed shortly. Reviewed by: allanjude@, emaste@, kib@, wblock@ (earlier versions) Phabric: D523 MFC after: 2 weeks Relnotes: yes Sponsored by: The FreeBSD Foundation
* Stop creating /etc/gnatsgavin2014-06-201-2/+0
|
* - Include /etc/newsyslog.conf.d/* and /usr/local/etc/newsyslog.conf.d/* bybdrewery2014-05-201-0/+2
| | | | | | | | | | default for newsyslog(8). The /usr/local/etc/newsyslog.conf.d will give packages an opportunity to install a default configuration to handle their own log files. MFC after: 2 weeks Relnotes: yes
* Import Dragonfly Mail Agent into base systembapt2014-02-211-0/+2
| | | | | | | | | | | | It is a small and lightweight Mail Transport Agent. It accepts mails from locally installed Mail User Agents (MUA) and delivers the mails either locally or to a remote destination. Remote delivery includes several features like TLS/SSL support, SMTP authentication and NULLCLIENT. Make dma conditional to new WITHOUT_DMA option and make it respect WITHOUT_MAIL Reviewed by: peter Discussed with: emaste, bz, peter
* Please welcome casperd daemon. It (and its services) will be responsible forpjd2013-12-021-0/+4
| | | | | | | | | | | | | | | | | | | giving access to functionality that is not available in capability mode sandbox. The functionality can be precisely restricted. Start with the following services: - system.dns - provides API compatible to: - gethostbyname(3), - gethostbyname2(3), - gethostbyaddr(3), - getaddrinfo(3), - getnameinfo(3), - system.grp - provides getgrent(3)-compatible API, - system.pwd - provides getpwent(3)-compatible API, - system.random - allows to obtain entropy from /dev/random, - system.sysctl - provides sysctlbyname(3-compatible API. Sponsored by: The FreeBSD Foundation
* Move /etc/keys to /usr/share/keys where users are less likely to modify them.bdrewery2013-10-291-8/+0
| | | | | Requested by: secteam (cperciva, des) Approved by: bapt
* Fix indentationbdrewery2013-10-261-5/+5
| | | | | | | Reported by: zont Approved by: bapt (implicit) MFC after: 2 days X-MFC-With: r257145
* Add missing /etc/pkg to BSD.root.distbdrewery2013-10-261-0/+2
| | | | | | Approved by: bapt MFC after: 2 days X-MFC-With: r257145
* Add infrastructure for installing pkg(8) keys into /etc/keys/pkg and addbdrewery2013-10-261-0/+8
| | | | | | | | the current test key that packages will be signed with until 10.0-RELEASE. Approved by: bapt Discussed by: bapt with des MFC after: 2 days
* Remove most of the ATF tools and the _atf user.rpaulo2013-10-121-2/+0
| | | | | | | | This is necessary because ATF is deprecated and it will be replaced by Kyua. Submitted by: jmmv@netbsd.org Reviewed by: Garrett Cooper Approved by: re
* Replace the unused /etc/unbound directory with a symlink to /var/unbound.des2013-09-241-2/+0
| | | | Approved by: re (blanket)
* Build and install the Unbound caching DNS resolver daemon.des2013-09-151-0/+2
| | | | Approved by: re (blanket)
* Add ATF to the build. This is may be a bit rought around the egdes,marcel2012-10-221-0/+2
| | | | | | | | | | | | | | | | | but committing it helps to get everyone on the same page and makes sure we make progress. Tinderbox breakages that are the result of this commit are entirely the committer's fault -- in other words: buildworld testing on amd64 only. Credits follow: Submitted by: Garrett Cooper <yanegomi@gmail.com> Sponsored by: Isilon Systems Based on work by: keramida@ Thanks to: gnn@, mdf@, mlaier@, sjg@ Special thanks to: keramida@
* Add resolvconf(8) which manages resolv.conf.ume2011-03-181-0/+2
|
* Add /etc/devd/ and move hardware specific configuration there. This makes itthompsa2008-12-171-0/+2
| | | | | | easier to maintain custom rules for non-system things like ACPI hotkeys. /etc/devd.conf is already set up to check this directory, no change needed there.
* Remove ISDN4BSD (I4B) from HEAD as it is not MPSAFE andbz2008-05-261-2/+0
| | | | | | | | | | | | | | | | | | parts relied on the now removed NET_NEEDS_GIANT. Most of I4B has been disconnected from the build since July 2007 in HEAD/RELENG_7. This is what was removed: - configuration in /etc/isdn - examples - man pages - kernel configuration - sys/i4b (drivers, layers, include files) - user space tools - i4b support from ppp - further documentation Discussed with: rwatson, re
* Move zpool.cache from /etc/zfs/ to /boot/zfs/, so we can keep it onpjd2007-04-081-0/+2
| | | | dedicated /boot/ file system and use ZFS for the root file system.
* Connect ZFS to the build.pjd2007-04-061-0/+2
|
* Add a /media to FreeBSD. /media is a directory designed to containmarcus2006-05-101-0/+2
| | | | | | | | | | | | subdirectories that will be used for removable media mount points (i.e. mount points for CDs, floppy disks, USB drives, etc.). While the primary purpose of /media is to provide a location for HAL (http://www.freedesktop.org/wiki/Software_2fhal) to mount volumes, it could be used by any application that needs to manage removable media volumes. Discussed on: arch@ Approved by: mux MFC after: 1 week
* Add a new extensible GSS-API layer which can support GSS-API plugins,dfr2005-12-291-0/+2
| | | | | | | | | 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)
* Add /boot/firmware as iwi(4) now reads its firmware there.delphij2005-12-111-0/+2
| | | | Reminded by: flz
* Add /etc/security, into which the BSM audit configuration files will berwatson2005-05-301-0/+2
| | | | | | | | | | | installed. This is the same directory as found on Solaris. NB: In FreeBSD 4.x and earlier, a script (file) named /etc/security exists. Does mergemaster need to be taught how to replace a file with a directory? Submitted by: wsalamon Obtained from: TrustedBSD Project
* Create a named chroot directory structure in /var/named, and use itdougb2004-09-281-4/+0
| | | | | | | | | | | | | | | | 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.
* Create /etc/namedb/bind with owner / group bind and mode 0750.des2004-09-251-0/+2
|
* Re-add namedb. I misunderstood what Doug said about using ISC'sdes2004-09-231-0/+2
| | | | layout: he meant for binaries, not configuration files.
* Switch from BIND 8 to BIND 9.des2004-09-211-6/+0
| | | | | | Submitted by: (in part) dougb@, trhodes@ Reviewed by: dougb@, trhodes@, re@ MFC after: 5 days
* Fixed style of previous commit.ru2004-07-271-1/+1
|
* Add /etc/ntp to hold keys for ntpd.roberto2004-07-211-0/+2
|
* - Install includes used by STRIPE and NOP GEOM classes.pjd2004-05-201-0/+2
| | | | | | - Create needed directories. Supported by: Wheel - Open Technologies - http://www.wheel.pl
* Connect /etc/bluetooth and /usr/share/examples/netgraph/bluetooth to the build.emax2003-10-261-0/+2
| | | | | Reviewed by: imp, simon Approved by: imp (mentor)
* Add /lib and /libexec directories. These are part of the dynamic rootgordon2003-08-171-0/+4
| | | | support.
* Add /rescue bits. This basically encompasses all of bin and sbin alonggordon2003-06-291-0/+2
| | | | | | with a couple of bits from usr.bin in a crunchgen'd binary. Submitted by: Tim Kientzle <kientzle@acm.org>
* No tabs here.ru2003-03-111-1/+1
|
* Initiate KerberosIV de-orbit burn. Disconnect the /etc configs.markm2003-03-081-2/+0
|
* Set the expected permissions of /dev to 0555 since this is what devfsjoerg2003-02-091-1/+1
| | | | | is using anyway. Otherwise, "make installworld" insists on resetting them to 0755.
* NODEVFS cleanup.ru2003-02-051-2/+0
|
* Change our default XF86Config location from /etc/ to /etc/X11/,obrien2002-06-101-0/+2
| | | | | | following the lead of The XFree86 Project's default. Approved by: Murray
* Long ago, there was just /etc/daily. Then /etc/security was split outcjc2001-12-071-0/+2
| | | | | | | | | | of /etc/daily. Some time later, /etc/daily became a set of periodic(8) scripts. Now, this evolution continues, and /etc/security has been broken into periodic(8) scripts to make local customization easier and more maintainable. Reviewed by: ru Approved by: ru
* Oops! Previous commit used tabs instead of spaces.des2001-12-051-2/+2
|
* Add /etc/pam.d.des2001-12-051-0/+2
| | | | Sponsored by: DARPA, NAI Labs
* UUCP removal phase II. These directories are now created by thekris2001-10-011-2/+0
| | | | freebsd-uucp port.
* Mention the path to the README file in the header comment.nik2001-06-261-1/+1
| | | | Submitted by: Rich Morin <rdm@cfcl.com>
* Got my r's and t's mixed up. Fix sorting.obrien2001-06-221-2/+2
|
* Add etc/rc.d (looking to the future)obrien2001-06-211-0/+2
|
OpenPOWER on IntegriCloud