summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2017-02-28Make object-in-archive-used identification portable to lld: use --tracePhilip Guenther
instead of -M and transform the output to a common /path/to/archive.a(object.o) syntax. problem noted by jsg@ ok kettenis@ jsg@
2017-02-28Sort vm.conf(5) config options alphabeticallyReyk Floeter
OK mlarkin@
2017-02-28Use fmt_scaled(3) in vmctl status output to print curmem/maxmemReyk Floeter
This matches the accepted input in vmctl start and vm.conf that supports using M, G, T etc. instead of a hardcoded MB. It also allows to shrink the column size as the unit will be scaled automatically. OK mlarkin@
2017-02-27update an example in the relayd.conf manpage, that was not convertedSebastian Benoit
to the new syntax 2 years ago. Found by Michael W. Lucas, thanks! ok tb@
2017-02-27Remove support for pkg.conf in light of the consolidation towardsRobert Peichaer
a single configuration file for the OpenBSD repository location. The pkg_* tools now use installurl(5) to find the package repository. NOTE: /etc/installurl only contains a single URL pointing to a mirror. Use the PKG_PATH environment variable to specify more than one package repository. prodded by and OK deraadt@ aja@
2017-02-27Replace openpty(3) with local function that uses pre-opened /dev/ptm fdReyk Floeter
This allows more flexibility for upcoming changes and better pledge. We also didn't use half of the features of libutil's openpty function. Additionally, make sure that the ttys are closed correctly on shutdown. OK gilles@
2017-02-27framework for some performance stats as a -V... option (like how muchMarc Espie
of a package you actually downloaded, or how many packages you touch) okay aja@
2017-02-27Add size checks for imsg received over the control socket.Reyk Floeter
Additionally, make sure that vmd never fatal()s when receiving an invalid imsg from an arbitrary user over the control socket. OK gilles@
2017-02-27Print the DNSSEC OKAY flag as "DO", like in upstream tcpdumpJeremie Courreges-Anglas
ok florian@
2017-02-26Use mkdir -p instead of install -d to create the obj/util directory.Theo Buehler
The latter defaults to 755, which doesn't play nicely with BUILDUSER. Problem reported by jmc and Jan Stary; tested by myself and jmc. ok ajacoutot
2017-02-26build pcidump on arm64Jonathan Gray
2017-02-25pledge stdio before parsing the http responseBob Beck
ok tb@
2017-02-24Implement fork+exec modelGleydson Soares
OK jmatthew@
2017-02-22print a formatted errx() string instead of segfault,Gleydson Soares
by checking argc correctly. ok guenther@
2017-02-22No need to use SIOCGIFRDOMAIN anymore.Renato Westphal
2017-02-22Allow specifying an alternate socket path.Renato Westphal
2017-02-22Add missing htonl for IPsec SPI.Renato Westphal
Also, do not allow to configure SPI values in the 0..255 range. RFC 4302 and RFC 4303 say the following: "The set of SPI values in the range 1 through 255 are reserved by the Internet Assigned Numbers Authority (IANA) for future use; a reserved SPI value will not normally be assigned by IANA unless the use of the assigned SPI value is specified in an RFC. The SPI value of zero (0) is reserved for local, implementation-specific use and MUST NOT be sent on the wire". ok and tweak benno@
2017-02-22The default for the strip-nt-domain attribute is "yes", so fix upPatrick Wildt
the manpage to not tell lies. ok yasuoka@
2017-02-22Delete lines which are misleading and unneeded.YASUOKA Masahiko
spotted patrick
2017-02-21update to unbound-1.6.1 release; only version string changes compared toStuart Henderson
the release candidate we had.
2017-02-21Stop using "DEBUG" make variable for extra debugs.YASUOKA Masahiko
2017-02-20Add missing $OpenBSD$Bob Beck
2017-02-19draft-ietf-idr-large-community has been published as RFC 8092Peter Hessler
2017-02-17regenFlorian Obser
2017-02-17Update to 4.1.15.Florian Obser
This contains a local patch to query.c (missed _t conversion) that has been submitted upstream. OK sthen
2017-02-17Update to unbound-1.6.1rc3 - thanks millert@ and Brad for tests.Stuart Henderson
2013-11-26import NSD 4.0.0, tests from Dorian Büttner, Patrik Lundin, requested by ↵Stuart Henderson
brad@
2012-03-26Import Unbound 1.4.16 to work on in-tree (not yet linked to the build).Stuart Henderson
These are the direct sources from NLnet Labs upstream, minus these: compat contrib libunbound/python pythonmod testcode testdata winrc ok deraadt@ jakob@
2010-01-15NSD v3.2.4Jakob Schlyter
2017-02-17ypbind(8) is not started automatically at boot time by /etc/rc if domainnameAntoine Jacoutot
is set and the directory var/yp/binding exists. ok deraadt@
2017-02-16Bring parse_warn() into the log.[ch] 21st century and adopt the "^"Kenneth R Westerback
placement logic from dhclient.
2017-02-15Adopt the common verbiage other log.[ch] daemons use to describe '-d'.Kenneth R Westerback
Point out that dhcpd(8) -f is an alias for -d.
2017-02-15improve list item formatting;Jason McIntyre
from salvador sabaini
2017-02-14fix man page, diff from jmc@Gilles Chehade
2017-02-14add standalone maildir MDA (work in progress) which will soon obsolete theGilles Chehade
builtin delivery_maildir backend, + makefiles, not linked to build yet ok eric@, sunil@
2017-02-14add standalone mda for file delivery which will later obsoleteGilles Chehade
builtin delivery_file + set of makefiles, not linked to build ok sunil@, eric@
2017-02-14prepare Makefiles but don't link to the build yetGilles Chehade
2017-02-14add new implementation of a standalone LMTP client which will deprecate theGilles Chehade
builtin delivery_lmtp.c ok sunil@, jung@
2017-02-14fix a crash when parsing large community given on the command lineSebastian Benoit
found by jsg@, fixed by phessler@ and strsep() by me. fix memory leak jsg@ ok jsg@ phessler@
2017-02-13Eliminate pointless'%m' (a.k.a. hand rolled strerror()) by using fatal() andKenneth R Westerback
log_warn(). Zap a couple of explicit 'syslog()' calls.
2017-02-13Eliminate pointless'%m' (a.k.a. hand rolled strerror()) by using fatal() andKenneth R Westerback
log_warn(). Zap a couple of explicit 'syslog()' calls.
2017-02-13Adjust some long lines.Kenneth R Westerback
2017-02-13Adjust some long lines.Kenneth R Westerback
2017-02-13Do the strerror() elimination dance with a log_warnx() -> log_warn().Kenneth R Westerback
2017-02-13Do the strerror() elimination dance with log_warnx() -> log_warn(),Kenneth R Westerback
fatalx() -> fatal() and even a couple of fprintf(stderr) -> log_warn().
2017-02-13Banished to the attic.Kenneth R Westerback
2017-02-13Switch from old errwarn.c logging to shiny new log.[ch].Kenneth R Westerback
ok benno@
2017-02-13Switch from old errwarn.c logging to shiny new log.[ch].Kenneth R Westerback
ok benno@
2017-02-13Fix powerdown with vmmci(4) VMs using a shutdown and no reset.Reyk Floeter
vmm VMs don't support powerdown - no ACPI or power management - so we use a trick to issue a reboot and just don't reset after the triple fault. This worked before but was broken with the previous fix to pvbus_shutdown() - move the trick to vmd instead. OK mlarkin@
2017-02-13Reverse output when installing a patch; it's more logical (first get, thenAntoine Jacoutot
install). While here, match the installer output a bit more: Get/Verify ... Installing ... prodded by a mail exchange with "bytevolcano" discussed with robert@ sthen@ ok robert@