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

12345

/freebsd-11-stable/contrib/pf/pflogd/
H A Dpidfile.h3 int pidfile(const char *);
/freebsd-11-stable/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"}
/freebsd-11-stable/bin/pkill/tests/
H A Dpgrep-LF_test.sh8 name="pgrep -LF <pidfile>"
9 pidfile=$(pwd)/pidfile.txt
12 daemon -p $pidfile $sleep 5
14 chpid=`cat $pidfile`
15 pid=`pgrep -f -L -F $pidfile $sleep`
23 # Be sure we cannot find process which pidfile is not locked.
27 echo $chpid > $pidfile
28 pgrep -f -L -F $pidfile $sleep 2>/dev/null
40 rm -f $pidfile
[all...]
H A Dpgrep-F_test.sh8 name="pgrep -F <pidfile>"
9 pidfile=$(pwd)/pidfile.txt
15 echo $chpid > $pidfile
16 pid=`pgrep -f -F $pidfile $sleep`
23 rm -f $pidfile
H A Dpkill-F_test.sh8 name="pkill -F <pidfile>"
9 pidfile=$(pwd)/pidfile.txt
14 echo $! > $pidfile
15 pkill -f -F $pidfile $sleep
26 rm -f $pidfile
H A Dpkill-LF_test.sh8 name="pkill -LF <pidfile>"
9 pidfile=$(pwd)/pidfile.txt
12 daemon -p $pidfile $sleep 5
14 pkill -f -L -F $pidfile $sleep
25 # Be sure we cannot kill process which pidfile is not locked.
29 echo $chpid > $pidfile
30 pkill -f -L -F $pidfile $sleep 2>/dev/null
42 rm -f $pidfile
/freebsd-11-stable/etc/rc.d/
H A Dbsnmpd18 pidfile="${bsnmpd_pidfile:-/var/run/snmpd.pid}"
19 command_args="-p ${pidfile}"
H A Dhostapd20 pidfile="/var/run/${name}.pid"
24 pidfile="/var/run/${name}-${ifn}.pid"
27 command_args="-P ${pidfile} -B ${conf_file}"
H A Dauditdistd16 pidfile="/var/run/${name}.pid"
H A Dcron17 pidfile="/var/run/${name}.pid"
H A Dctld16 pidfile="/var/run/${name}.pid"
H A Dinetd16 pidfile="/var/run/${name}.pid"
H A Discsid16 pidfile="/var/run/${name}.pid"
H A Drarpd20 pidfile="${rarpd_pidfile:-/var/run/${name}.pid}"
H A Dwatchdogd40 pidfile="/var/run/${name}.pid"
H A Dautomountd16 pidfile="/var/run/${name}.pid"
H A Dautounmountd16 pidfile="/var/run/${name}.pid"
H A Dftpd16 pidfile="/var/run/${name}.pid"
H A Drtsold17 pidfile="/var/run/${name}.pid"
H A Dbthidd17 pidfile="/var/run/${name}.pid"
31 command_args="-c ${config} -H ${hids} -p ${pidfile}"
H A Ddevd24 pidfile="$_pidfile_from_conf"
26 pidfile="/var/run/${name}.pid"
H A Dhcsecd17 pidfile="/var/run/${name}.pid"
H A Dpflog16 pidfile="/var/run/pflogd.pid"
42 # -p flag requires stripping pidfile's leading /var/run and trailing .pid
43 pidfile=$(echo $pidfile | sed -e 's|/var/run/||' -e 's|.pid$||')
46 rc_flags="-p $pidfile -f $pflog_logfile -i $pflog_dev $rc_flags"
60 rm $pidfile
90 # Provide a unique pidfile name for pflogd -p <pidfile> flag
91 pidfile="/var/run/pflogd.$2.pid"
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf63 pidfile /var/run/udhcpd-wlan2.pid #default: /var/run/udhcpd.pid

Completed in 196 milliseconds

12345