summaryrefslogtreecommitdiffstats
path: root/libexec/atrun
Commit message (Collapse)AuthorAgeFilesLines
* Add missing files to 'at' and 'rcmds' packages.gjb2016-02-051-0/+1
| | | | Sponsored by: The FreeBSD Foundation
* Fix the type for hw.ncpu, so sysctlbyname doesn't consistently fail onngie2016-01-301-1/+2
| | | | | | | | | | 64-bit architectures where sizeof(int) != sizeof(size_t). MFC after: 1 week PR: 206758 Reported by: Christoph Schönweiler <public2016@hauptsignal.at> Submitted by: kib Sponsored by: EMC / Isilon Storage Division
* Call /etc/crontab the "system crontab", not "root's crontab". Whilewblock2015-06-221-11/+13
| | | | | | | | here, fix some other wording issues PR: 201048 Submitted by: teksimian@gmail.com MFC after: 1 week
* Add META_MODE support.sjg2015-06-131-0/+20
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-081-2/+0
| |
| * Merge sync of headsjg2015-05-271-2/+1
| |\
| * | Updated dependenciessjg2014-05-161-1/+0
| | |
| * | Updated dependenciessjg2014-05-101-0/+2
| | |
| * | Merge headsjg2014-04-281-0/+6
| |\ \
| * \ \ Merge from headsjg2013-09-051-1/+5
| |\ \ \
| * | | | Updated dependenciessjg2013-03-111-0/+1
| | | | |
| * | | | Updated dependenciessjg2013-02-161-2/+0
| | | | |
| | | | |
| | \ \ \
| *-. \ \ \ Sync from headsjg2012-11-042-3/+22
| |\ \ \ \ \
| * | | | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-221-0/+21
| | |/ / / / | |/| | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | | | Re-introduce this - it doesn't compile clean on a mips targetadrian2015-06-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | (eg CARAMBOLA2.)
* | | | | | Remove WARNS atrun builds fine with clang and gccbapt2015-06-061-1/+0
| |_|_|_|/ |/| | | |
* | | | | Convert to LIBADDbapt2014-11-251-2/+1
| |_|_|/ |/| | | | | | | | | | | Reduce overlinking
* | | | Fix releasing the lock in the parent atrun process after the queueghelmer2014-04-171-0/+6
| |_|/ |/| | | | | | | | | | | directory has been processed. Otherwise, a long-running child process caused other atrun invocations to stall unnecessarily.
* | | Add the name of the file that could not be opened to the error messageghelmer2013-06-111-1/+1
| | | | | | | | | | | | | | | | | | regarding the failure. Suggested while working on PR bin/113239.
* | | Prevent races running the queue by serializing access to theghelmer2013-06-111-0/+4
| |/ |/| | | | | | | | | queue directory. PR: bin/113239
* | atrun(8): scale default load average limit with the number of CPUsmjg2012-10-302-2/+21
| | | | | | | | | | | | | | | | | | Previously atrun refused to run jobs if load average was not below fixed limit of 1.5. PR: 173175 Reviewed by: peterj Approved by: trasz (mentor) MFC after: 2 weeks
* | atrun: Do not assume that MAXLOGNAME <= 100.jilles2012-09-261-1/+1
|/ | | | | | | | | The reserved space for fmt was exactly sufficient for a two-digit value of MAXLOGNAME - 1. PR: bin/171815 Submitted by: Jeremy Huddleston Sequoia MFC after: 1 week
* Make WARNS=6 the default for libexec/.ed2010-01-021-0/+2
| | | | | | | | | | | | | | | Just like bin/ and sbin/, I think setting WARNS to the highest value possible will make it more attractive for people to fix warnings. - The WARNS variable is set in the Makefile in the directory of the application itself, making it more likely that it will be removed out of curiosity to see what happens. - New applications will most likely build with WARNS=6 out of the box, because the author would more likely fix the warnings during development than lower WARNS. Unfortunately almost all apps in libexec require a lowered value of WARNS.
* Don't use UT_NAMESIZE here to determine the maximum username length.ed2009-12-251-9/+2
|
* Fixed static linkage (build with -DNO_SHARED).ru2007-10-011-1/+1
| | | | Approved by: re (kensmith)
* Note PAM support in atrun(8).yar2007-06-171-4/+17
| | | | | Sort FILES section while there. Touch document date.
* Add PAM support to atrun(8).yar2007-06-152-11/+36
|
* Actually use new features of perr() and perrx().yar2007-06-151-44/+33
|
* Catch up with perr() becoming variadic.yar2007-06-151-1/+1
|
* Make perr() variadic and add perrx() to use in cases whereyar2007-06-151-4/+30
| | | | | errno is irrelevant. Some code duplication can be reduced if perr() is variadic and perrx() is available.
* Use a single setusercontext(3) instead of a bunch of basic syscalls.yar2007-06-142-0/+29
| | | | | Besides aesthetic benefits, that makes at(1) jobs subject to such login.conf(5) settings as resource limits.
* Spotted another copy of the loony error message.yar2007-06-141-1/+1
|
* Fix an error message that was beside the point.yar2007-06-141-1/+1
|
* Fix a typical off-by-one error that can result in an unterminated string:yar2007-06-141-1/+1
| | | | | | | | strncpy(dst, src, sizeof(dst)); by substituting the safer strlcpy() for strncpy(). X-Security: none (the source string isn't user-supplied)
* Don't be sexist - fix a typo.ceri2005-12-301-1/+1
|
* Fix a few cases that relied on 'implicit int' (constraint violation in C99).stefanf2004-07-111-1/+1
|
* Removed trailing whitespace.ru2004-07-021-4/+4
|
* mdoc(7) police: Deal with self-xrefs.ru2002-12-241-1/+1
|
* Lock down with WFORMAT?=1, with overrides in the subdirectories whichkris2002-02-041-0/+1
| | | | are not yet warning-clean. Tested on i386 and alpha.
* o Eliminate __Pimp2002-02-031-3/+3
| | | | | | o Use new-style function definitions o remove some !__STDC__ code o eliminate register
* by by -> bykris2001-07-231-1/+1
| | | | | Obtained from: OpenBSD MFC After: 1 week
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* - Backout botched attempt to intoduce MANSECT feature.ru2001-03-261-4/+5
| | | | - MAN[1-9] -> MAN.
* Don't use MANDEPEND and MANSRC.ru2001-03-261-0/+1
|
* Set the default manual section for libexec/ to 8.ru2001-03-201-3/+2
|
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-2/+3
|
* mdoc(7) police: removed history info from the .Os FreeBSD call.ru2000-12-141-1/+1
|
* Don't hard-code a buffer sizekris2000-11-261-1/+2
|
* Don't uselessly set MANDEPEND (it isn't used in this Makefile, and isn'tbde2000-05-151-9/+7
| | | | | | | | | really used in bsd.man.mk). Don't uselessly set MANSRC ("." is in the path by default, and there are no ordering problems). Fixed some other style bugs.
* $Id$ -> $FreeBSD$peter1999-08-286-6/+6
|
OpenPOWER on IntegriCloud