summaryrefslogtreecommitdiff
path: root/etc
AgeCommit message (Collapse)Author
2016-09-11Add a few directories missed in the pastMatthieu Herrb
2016-09-11The /etc/{localtime,rmt}, /var/tmp and /sys symlinks and the etc tarballMartin Natano
should be owned by root. ok deraadt
2016-09-11syncTheo de Raadt
2016-09-11extra spacesTheo de Raadt
2016-09-10Unbreak ksh.kshrc by using a MI way of finding out the console device name.Robert Peichaer
Found by landry OK deraadt
2016-09-10Simplify setting the USER and UID variables.Robert Peichaer
While here, convert `` to $(). OK halex
2016-09-10Remove remnants of rlogin, it's long gone (2002).Robert Peichaer
OK halex
2016-09-10IdentationRobert Peichaer
OK halex, krw
2016-09-09print a clear error message when not ran as root instead of just fallingJasper Lievisse Adriaanse
through and try whatever it can do with the invoking user's perms feedback/ok aja@ rpe@
2016-09-09Convert [] to ksh style [[]] tests.Robert Peichaer
Based on a diff from Anthony Coulter. OK krw, halex
2016-09-09Resurrect the detection of the console device that got lost a long time ago.Robert Peichaer
OK tb
2016-09-08sync after /dev/sound* removalAlexandre Ratchov
2016-09-08Remove /dev/sound* as they are not used and they are identicalAlexandre Ratchov
to /dev/audio*. No port is using them (thanks to sthen@ for checking). ok sthen@
2016-09-07remove unused MD man5 dirs; ok schwarzeJason McIntyre
while here, remove the comment for man6, according to ingo's system...
2016-09-07Introduce an _rc_check_name() function to check the input script name so thatAntoine Jacoutot
we don't end up with cryptic error messages. Regex help from rpe@ Issue reported by Anthony Coulter in rcctl(8), but better fix the root cause. Also clarify the mage page that rc.d script name must follow ksh(1) variable naming. ok robert@ sthen@
2016-09-07restore commenting scheme:Ingo Schwarze
before descending, after ascending, but not around single-subdir dirs
2016-09-04regenChristian Weisgerber
2016-09-04Remove the tape block device nodes.Christian Weisgerber
While here, also remove two forgotten descriptions for long obsolete devices.
2016-09-04bump the random timeout to taking % 2048 sec to avoid modulus biasTheo Buehler
ok phessler
2016-09-03update pf.os for larger wscale by defaultStuart Henderson
2016-09-03Add /var/syspatch to mtree(8).Antoine Jacoutot
OK many
2016-09-03Retire zaurus, as it hasn't made the EABI jump and will be permanently brokenPhilip Guenther
shortly when we use the hardware thread register in userland
2016-09-03Add doas.conf example configuration file.Paul Irofti
Discussed with and loved by many. OK tedu@, tom@, deraadt@.
2016-09-02syncKazuya Goda
2016-09-02Add switch(4) cdev entryKazuya Goda
ok deraadt@ yasuoka@ reyk@
2016-09-02move links from http to https://www.openbsd.org/Theo Buehler
ok beck
2016-09-02syncStuart Henderson
2016-09-01remove sparc piecesTheo de Raadt
2016-08-31create acme-client directoriesFlorian Obser
2016-08-31use tab.Antoine Jacoutot
2016-08-23syncOkan Demirmen
2016-08-18syncStuart Henderson
2016-08-15syncStuart Henderson
2016-08-11Update moduli file.Darren Tucker
2016-08-10armish handled some early-gen arm machines, which required tons ofTheo de Raadt
workarounds. Some of them will soon stand in the way of armv7. Off to the attic you go.
2016-08-09remove pointless csh placeholder files from /etcAlexander Hall
ok jung@ (some time ago) phessler@
2016-07-30old keys no longer neededTheo de Raadt
2016-07-25add new mirror in Lithuania to examples/pkg.conf, ok deraadtStuart Henderson
2016-07-19Do not consider tap(4) a special interface and start if before otherMartin Pieuchot
pseudo-interfaces. This unbreak vlan(4) on top of tap(4) since the refactoring to turn it MP-safe. ok claudio@, deraadt@
2016-07-16syncTodd C. Miller
2016-07-10Fix detection of /usr/lib on NFS.Robert Peichaer
Found by Frank Scheiner, thanks for reporting this. OK krw, halex 'cool' deraadt
2016-07-05regenVisa Hankala
2016-07-05Add /dev/openprom.Visa Hankala
ok kettenis@ deraadt@ jasper@
2016-07-05syncStuart Henderson
2016-06-26upgrade selected login.conf to use auto rounds for bcrypt. the installerTed Unangst
already does this, so we don't want to go backwards on password changes. ok krw
2016-06-05The ldpd(8) sample config was terribly outdated. Passive interfaces,Renato Westphal
for example, were removed in 2013 because they don't make sense in ldpd. ok deraadt
2016-06-03Add operators =, !=, - (range), >< (exclsive range) to the as-pathSebastian Benoit
filters (AS, peer-as, source-as, transit-as). Add a use case (block illegal AS numbers) to the bgpd.conf example. feedback from claudio, sthen, florian, ok florian@ phessler@
2016-06-01Remove dead 2004 link to list of blacklists, from Sevan Janiyan.Stuart Henderson
Point at wikipedia's list of blacklists instead, some are DNS-only but there are a few rsyncable ones in there (including a good commercial one and some free ones).
2016-06-01increase permitted sizes for daemon and messages. i overflow them tooTed Unangst
frequently for my taste, and disk is cheap. ok deraadt millert
2016-05-29Improve error handling in reorder_libs()Robert Peichaer
- run commands in subshell only if mktemp is successful - on error just leave the for-loop but set _error=true - cleanup tmpdirs afterwards - set _error=true if the ro remount fails - print appropriate final message depending on $_error positive feedback from deraadt OK krw