Searched refs:PIDFILE (Results 1 – 25 of 27) sorted by relevance
12
| /freebsd-10-stable/contrib/ntp/scripts/rc/ |
| D | ntpd | 4 PIDFILE=/var/run/ntpd.pid 7 NTPD_OPTS="-g -u $USER:$GROUP -p $PIDFILE" 10 if [ -r $PIDFILE ]; then 11 echo "ntpd seems to be already running under pid `cat $PIDFILE`." 12 echo "Delete $PIDFILE if this is not the case."; 34 [ -e $PIDFILE ] && rm $PIDFILE 40 if [ ! -r $PIDFILE ]; then 45 PID=`cat $PIDFILE` 55 rm $PIDFILE 66 if [ -r $PIDFILE ]; then [all …]
|
| /freebsd-10-stable/contrib/netbsd-tests/net/ndp/ |
| D | t_ra.sh | 41 PIDFILE=./rump.rtadvd.pid 77 local PIDFILE=${1} 80 while [ -f ${PIDFILE} ] 171 start_rtadvd $RUMPSRV $PIDFILE 183 atf_check -s exit:0 kill -TERM `cat ${PIDFILE}` 184 wait_term ${PIDFILE} 190 start_rtadvd $RUMPSRV $PIDFILE 195 atf_check -s exit:0 kill -TERM `cat ${PIDFILE}` 196 wait_term ${PIDFILE} 204 if [ -f ${PIDFILE} ]; then [all …]
|
| /freebsd-10-stable/crypto/openssh/regress/ |
| D | reexec.sh | 42 $SUDO kill `$SUDO cat $PIDFILE` 43 rm -f $PIDFILE 57 $SUDO kill `$SUDO cat $PIDFILE` 58 rm -f $PIDFILE 70 $SUDO kill `$SUDO cat $PIDFILE` 71 rm -f $PIDFILE
|
| D | reconfigure.sh | 28 PID=`$SUDO cat $PIDFILE` 29 rm -f $PIDFILE 34 while [ ! -f $PIDFILE -a $i -lt 10 ]; do 39 test -f $PIDFILE || fatal "sshd did not restart"
|
| D | test-exec.sh | 305 if [ -f $PIDFILE ]; then 306 pid=`$SUDO cat $PIDFILE` 316 while [ -f $PIDFILE -a $i -lt 5 ]; do 320 test -f $PIDFILE && \ 389 PIDFILE=$OBJ/pidfile 407 PidFile $PIDFILE 554 while [ ! -f $PIDFILE -a $i -lt 10 ]; do 559 test -f $PIDFILE || fatal "no sshd running on port $PORT"
|
| D | login-timeout.sh | 20 $SUDO kill `$SUDO cat $PIDFILE`
|
| /freebsd-10-stable/crypto/openssh/ |
| D | opensshd.init.in | 16 PIDFILE=$piddir/sshd.pid 18 [ X$PidFile = X ] || PIDFILE=$PidFile 46 if [ -r $PIDFILE -a ! -z ${PIDFILE} ]; then 47 PID=`${CAT} ${PIDFILE}`
|
| /freebsd-10-stable/tests/sys/geom/class/gate/ |
| D | ggate_test.sh | 3 PIDFILE=ggated.pid 31 atf_check ggated -p $PORT -F $PIDFILE $CONF 177 if [ -f "$PIDFILE" ]; then 178 pkill -F "$PIDFILE" 179 rm $PIDFILE
|
| /freebsd-10-stable/contrib/ntp/ntpd/ |
| D | cmd_args.c | 92 if (HAVE_OPT( PIDFILE )) in getCmdOpts() 93 stats_config(STATS_PID_FILE, OPT_ARG( PIDFILE )); in getCmdOpts()
|
| D | ntpd-opts.h | 239 # ifdef PIDFILE 240 # warning undefining PIDFILE due to option name conflict 241 # undef PIDFILE 323 # undef PIDFILE
|
| /freebsd-10-stable/sbin/natd/ |
| D | natd.h | 15 #define PIDFILE "/var/run/natd.pid" macro
|
| D | natd.c | 176 pidName = PIDFILE; in main()
|
| /freebsd-10-stable/usr.sbin/cron/cron/ |
| D | pathnames.h | 61 #define PIDFILE "%scron.pid" macro
|
| D | cron.c | 82 (void) snprintf(pidfile, sizeof(pidfile), PIDFILE, PIDDIR); in open_pidfile()
|
| /freebsd-10-stable/contrib/openbsm/bin/auditdistd/ |
| D | token.l | 69 pidfile { DP; return PIDFILE; }
|
| D | parse.y | 88 %token PIDFILE 147 pidfile_statement: PIDFILE STR
|
| /freebsd-10-stable/usr.sbin/ctld/ |
| D | token.l | 72 pidfile { return PIDFILE; }
|
| D | parse.y | 64 %token PATH PIDFILE PORT PORTAL_GROUP REDIRECT SEMICOLON SERIAL SIZE STR 149 pidfile: PIDFILE STR
|
| /freebsd-10-stable/sbin/hastd/ |
| D | token.l | 56 pidfile { DP; return PIDFILE; }
|
| D | parse.y | 87 %token CONTROL PIDFILE LISTEN REPLICATION CHECKSUM COMPRESSION METAFLUSH 168 pidfile_statement: PIDFILE STR
|
| /freebsd-10-stable/contrib/unbound/ |
| D | config.h | 525 #define PIDFILE "/var/unbound/unbound.pid" macro
|
| D | config.h.in | 524 #undef PIDFILE
|
| D | configure.ac | 179 AC_DEFINE_UNQUOTED(PIDFILE, ["$hdr_pid"], [default pidfile location]) definition
|
| /freebsd-10-stable/usr.sbin/uhsoctl/ |
| D | uhsoctl.c | 75 #define PIDFILE "/var/run/uhsoctl.%s.pid" macro 1294 snprintf(ctx->pidfile, 127, PIDFILE, ctx->ifnam); in daemonize() 1325 snprintf(pidfile, 127, PIDFILE, ifnam); in send_disconnect()
|
| /freebsd-10-stable/contrib/unbound/util/ |
| D | config_file.c | 153 if(!(cfg->pidfile = strdup(PIDFILE))) goto error_exit; in config_create()
|
12