| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
- use daemon(8) to write out a pid file for processes,
and check for for the existence of that file after
killing processes
- use explict named parameters to jail(8)
Notes:
svn path=/head/; revision=272305
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Even though jail is part of the base system, it can be disabled by src.conf
settings. Therefore, it should be listed as a required program for tests
that use it.
CR: D603
MFC after: 3 days
Sponsored by: Spectra Logic
Notes:
svn path=/head/; revision=269977
|
| |
|
|
|
|
|
|
| |
PR: 191174
Submitted by: Franco Fichtner <franco@lastsummer.de>
Notes:
svn path=/head/; revision=267667
|
| |
|
|
|
|
|
| |
from the latter.
Notes:
svn path=/head/; revision=265420
|
| |
|
|
|
|
|
|
|
| |
Interestingly, the pkill tool lives in bin, not usr.bin. Haven't bothered
to check if this is because the tool moved or because the tests were
originally added in the wrong place.
Notes:
svn path=/head/; revision=263351
|
| |
|
|
|
|
|
|
|
|
| |
Ask for a specific process instead of pulling down all processes when
-F <pidfile> is specified. This is much much faster.
Obtained from: DragonflyBSD
Notes:
svn path=/head/; revision=257911
|
| |
|
|
|
|
|
|
|
|
| |
CID: 1006559
Approved by: re (kib)
MFC after: 2 weeks
Sponsored by: FreeBSD Foundation
Notes:
svn path=/head/; revision=256050
|
| |
|
|
|
|
|
| |
MFC after: 1 month
Notes:
svn path=/head/; revision=254134
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This matches the constants from <signal.h> with 'SIG' removed, which POSIX
requires kill and trap to accept and 'kill -l' to write.
'kill -l', 'trap', 'trap -l' output is now upper case.
In Turkish locales, signal names with an upper case 'I' are now accepted,
while signal names with a lower case 'i' are no longer accepted, and the
output of 'killall -l' now contains proper capital 'I' without dot instead
of a dotted capital 'I'.
Notes:
svn path=/head/; revision=218285
|
| |
|
|
|
|
|
|
| |
Submitted by: jhell at dataix dot net
MFC after: 3 days
Notes:
svn path=/head/; revision=209924
|
| |
|
|
|
|
|
|
|
| |
PR: 143558
Submitted by: eitanadlerlist at gmail dot com
MFC after: 3 weeks
Notes:
svn path=/head/; revision=209363
|
| |
|
|
|
|
|
|
|
|
| |
their software.
Approved by: pjd
Obtained from: NetBSD
Notes:
svn path=/head/; revision=204553
|
| |
|
|
|
|
|
| |
- Add regression test to test -q option.
Notes:
svn path=/head/; revision=203802
|
| |
|
|
|
|
|
|
|
|
|
| |
allows the -M option to be used without specifying -N.
PR: bin/138146
Approved by: rrs (mentor)
MFC after: 3 days
Notes:
svn path=/head/; revision=203688
|
| |
|
|
|
|
|
| |
Submitted by: Marius Nünnerich <marius@nuenneri.ch>
Notes:
svn path=/head/; revision=202532
|
| |
|
|
|
|
|
|
|
| |
functionality. Per the regression tests (pgrep-t.t & pkill-t.t), "-t"
should accept "v1", which means a plain number should be accepted for
UNIX98-style PTY's.
Notes:
svn path=/head/; revision=201487
|
| |
|
|
|
|
|
|
| |
"-t" should accept "v1", which means a plain number should be accepted for
UNIX98-style PTY's.
Notes:
svn path=/head/; revision=201484
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Fix some wrong usages.
Note: this does not affect generated binaries as this argument is not used.
PR: 137213
Submitted by: Eygene Ryabinkin (initial version)
MFC after: 1 month
Notes:
svn path=/head/; revision=201145
|
| |
|
|
|
|
|
|
|
|
|
|
| |
always surprising when you kill a 'sh -c ...' ancestor or when you kill
yourself when using -f.
Add a -a switch for backwards compatibility.
MFC after: 3 weeks
Notes:
svn path=/head/; revision=192242
|
| |
|
|
|
|
|
|
|
|
|
|
| |
In my previous commit I disabled pkill(1)'s automatic prepending of the
"tty" string when `pkill -t' was being used. Re-enable it and stat()
both possible device names when called.
Requested by: jhb, rwatson (MFC)
MFC after: 1 month
Notes:
svn path=/head/; revision=183502
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Because we now enforce UNIX98-style PTY's, we now use a lot of TTY's
that don't have the traditional /dev/ttyXX naming scheme. pkill(1)'s -t
flag automatically prepended the word "tty" to each TTY that was passed
on the command line. This meant that `pkill -t pts/0' was actually
converted to /dev/ttypts/0. Disable this broken behaviour for now.
Reported by: erwin
Notes:
svn path=/head/; revision=183438
|
|
|
for the convenience of rc.d. Now it has happily lived there for quite
a while. So move the pkill(1) source files from usr.bin to bin, too.
Approved by: gad
Notes:
svn path=/head/; revision=182543
|