Searched refs:pidfile (Results 1 - 25 of 124) sorted by relevance

12345

/freebsd-current/contrib/pf/pflogd/
H A Dpidfile.h3 int pidfile(const char *);
/freebsd-current/contrib/unbound/contrib/
H A Dvalidation-reporter.sh11 # The pidfile for the reporter daemon.
12 pidfile="/var/run/validation-reporter.pid"
29 trap "rm -f \"$pidfile\"" EXIT
42 echo $! > "$pidfile"
47 if test -s "$pidfile"; then
48 kill `cat "$pidfile"`
50 if kill -0 `cat "$pidfile"` >/dev/null 2>&1; then
52 while kill -0 `cat "$pidfile"` >/dev/null 2>&1; do
53 kill `cat "$pidfile"` >/dev/null 2>&1
62 if test -s "$pidfile"; the
[all...]
H A Drc_d_unbound4 # uses the default unbound installation path and pidfile location.
21 pidfile=${unbound_pidfile:-"/usr/local/etc/unbound/unbound.pid"}
29 rm -f "$pidfile"
/freebsd-current/bin/pkill/tests/
H A Dpgrep-_lf_test.sh7 name="pgrep -LF <pidfile>"
8 pidfile=$(pwd)/pidfile.txt
11 daemon -p $pidfile $sleep 5
13 chpid=`cat $pidfile`
14 pid=`pgrep -f -L -F $pidfile $sleep`
22 # Be sure we cannot find process which pidfile is not locked.
26 echo $chpid > $pidfile
27 pgrep -f -L -F $pidfile $sleep 2>/dev/null
39 rm -f $pidfile
[all...]
H A Dpgrep-_f_test.sh7 name="pgrep -F <pidfile>"
8 pidfile=$(pwd)/pidfile.txt
14 echo $chpid > $pidfile
15 pid=`pgrep -f -F $pidfile $sleep`
22 rm -f $pidfile
H A Dpkill-_f_test.sh7 name="pkill -F <pidfile>"
8 pidfile=$(pwd)/pidfile.txt
13 echo $! > $pidfile
14 pkill -f -F $pidfile $sleep
25 rm -f $pidfile
H A Dpkill-_lf_test.sh7 name="pkill -LF <pidfile>"
8 pidfile=$(pwd)/pidfile.txt
11 daemon -p $pidfile $sleep 5
13 pkill -f -L -F $pidfile $sleep
24 # Be sure we cannot kill process which pidfile is not locked.
28 echo $chpid > $pidfile
29 pkill -f -L -F $pidfile $sleep 2>/dev/null
41 rm -f $pidfile
/freebsd-current/libexec/rc/rc.d/
H A Dbsnmpd19 pidfile="${bsnmpd_pidfile:-/var/run/snmpd.pid}"
20 command_args="-p ${pidfile}"
H A Discsid15 pidfile="/var/run/${name}.pid"
H A Dautomountd15 pidfile="/var/run/${name}.pid"
H A Dautounmountd15 pidfile="/var/run/${name}.pid"
H A Drarpd21 pidfile="${rarpd_pidfile:-/var/run/${name}.pid}"
H A Dftpd15 pidfile="/var/run/${name}.pid"
H A Dtlsservd19 pidfile="/var/run/rpc.${name}.pid"
H A Dtlsclntd16 pidfile="/var/run/rpc.${name}.pid"
H A Dinetd15 pidfile="/var/run/${name}.pid"
H A Dctld15 pidfile="/var/run/${name}.pid"
H A Dhostapd28 pidfile="/var/run/${name}.pid"
32 pidfile="/var/run/${name}-${ifn}.pid"
35 command_args="-P ${pidfile} -B ${conf_file}"
H A Dwpa_supplicant31 pidfile="/var/run/${name}/${ifn}.pid"
32 command_args="-B -i $ifn -c $conf_file -D $driver -P $pidfile"
H A Dggated12 pidfile="/var/run/${name}.pid"
H A Dhcsecd16 pidfile="/var/run/${name}.pid"
H A Dcron16 pidfile="/var/run/${name}.pid"
H A Dauditdistd15 pidfile="/var/run/${name}.pid"
/freebsd-current/crypto/openssh/regress/
H A Dagent-subprocess.sh7 ${SSHAGENT} sh -c "echo \$SSH_AGENT_PID >$OBJ/pidfile; sleep 1"
9 pid=`cat $OBJ/pidfile`
22 rm -f $OBJ/pidfile
/freebsd-current/contrib/wpa/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf63 pidfile /var/run/udhcpd-wlan2.pid #default: /var/run/udhcpd.pid

Completed in 116 milliseconds

12345