/src/usr.bin/make/unit-tests/ |
opt-no-action.exp | 3 echo '.BEGIN: run always' 4 .BEGIN: run always 6 echo 'main: run always' 7 main: run always 8 run-always: hidden command 9 run-always: run always 11 echo '.END: run always' 12 .END: run always
|
sh-leading-plus.exp | 1 echo 'this command is not run' 2 echo 'this command is run' 3 this command is run
|
opt-no-action.mk | 5 # Only commands that are in a .MAKE target or prefixed by '+' are run. 9 # This command cannot be prevented from being run since it is used at parse 14 all: run-always 16 # Both of these commands are printed, but only the '+' command is run. 19 @+echo '$@: run always' 21 # Both of these commands are printed, but only the '+' command is run. 24 @+echo '$@: run always' 26 # None of these commands is printed, but both are run, because this target 28 run-always: .MAKE 30 @+echo '$@: run always [all...] |
directive-ifnmake.exp | 1 Don't forget to run the tests (1)
|
sh-leading-plus.mk | 3 # Tests for shell commands preceded by a '+', to run them even if 9 @echo 'this command is not run' 10 @+echo 'this command is run'
|
directive-ifnmake.mk | 11 @echo "Don't forget to run the tests (1)" 18 @echo "Don't forget to run the tests (2)"
|
deptgt-interrupt.mk | 4 # collects commands to be run when make is interrupted while building another
|
sh-jobs-error.mk | 3 # Tests for error handling in the "run in jobs mode" part of the "Shell
|
sh-jobs.mk | 3 # Tests for the "run in jobs mode" part of the "Shell Commands" section 13 # leading '@', it is run in ignore-errors mode since the default runChkTmpl 22 # leading '@', it is run in ignore-errors mode. 29 # Without the comment, the commands are run in the default mode, which checks
|
varname-dot-parsedir.exp | 4 At run time, .PARSEDIR is undefined.
|
/src/etc/ |
wpa_supplicant.conf | 4 ctrl_interface=/var/run/wpa_supplicant
|
/src/usr.bin/sys_info/ |
sys_info.sh | 88 run() { function 89 # must send to stderr, as run is used in $() sometimes. 107 run "awk --version | awk '{ print \$1 \"-\" \$3 }'" 110 run "named -v | awk '{ gsub(\"-\", \"\", \$2); gsub(\"P\", \"pl\", \$2); print tolower(\$1) \"-\" \$2 }'" 113 v=$(run "${destdir}/usr/libexec/httpd -G") 116 run "strings -a ${destdir}/usr/libexec/httpd | awk -F/ '\$1 == \"bozohttpd\" && NF == 2 { print \$1 \"-\" \$2; exit }'" 124 run "bzip2 --help 2>&1 | awk '{ sub(\",\", \"\", \$7); print \"bzip2-\" \$7; exit }'" 127 v=$(run "calendar -v" || true) 134 run "dhcpcd --version | sed -e 's/ /-/g' -e 1q" 137 run "dtc --version | sed 's/Version: DTC /dtc-/' [all...] |
/src/etc/rc.d/ |
lvmlockdir | 20 mkdir -p /var/run/lvm 21 chown root:operator /var/run/lvm 22 chmod 770 /var/run/lvm
|
mdnsd | 15 pidfile="/var/run/mdnsd/${name}.pid" 20 if [ ! -d /var/run/mdnsd ]; then 21 mkdir -p -m 755 /var/run/mdnsd 23 chown _mdnsd:_mdnsd /var/run/mdnsd
|
wpa_supplicant | 10 # We need to run a command that resides in /usr/sbin, and the 29 if [ ! -d /var/run/wpa_supplicant ]; then 30 mkdir -p -m 755 /var/run/wpa_supplicant
|
clearcritlocal | 18 # this could include the cleanup of lock files and /var/run, etc. 21 if [ -d /var/run ]; then 22 cd /var/run && rm -rf -- *
|
sysdb | 65 check_file /dev /var/run/dev.db dev_mkdb 66 check_file /dev /var/run/dev.cdb dev_mkdb 77 # Re-create /var/run/utmp and /var/run/utmpx, which are 84 if ! [ -f /var/run/utmp$i ]; then 87 install -c -m 664 -g utmp /dev/null /var/run/utmp$i
|
dhcpcd | 25 : ${pidfile:=/var/run/$name.pid}
|
/src/sys/dev/microcode/run/ |
Makefile | 8 FILES= run-rt2870 run-rt3071 run-license
|
/src/sys/lib/libkern/ |
rngtest.c | 78 /* Run FIPS 140 statistical tests on a file */ 172 /* end of run */ 174 endrun(rngtest_t *const rc, const int last, int run) 176 if (run >= longrun) { 177 printf("Kernel RNG \"%s\" long run test FAILURE: " 178 "Run of %d %ds found\n", rc->rt_name, run, last); 181 if (run > 6) 182 run = 6; 183 ++rc->rt_runs[last][run]; 194 int run; local in function:rngtest [all...] |
/src/sys/dev/microcode/ |
Makefile | 3 SUBDIR+= qat ral rum run zyd
|
/src/distrib/atari/floppies/common/ |
mtree.conf | 22 ./var/run
|
/src/share/examples/hostapd/ |
hostapd.conf | 46 # multiple hostapd processes/interfaces can be run at the same time if more 48 # /var/run/hostapd is the recommended directory for sockets and by default, 50 ctrl_interface=/var/run/hostapd 54 # possible to run hostapd as root (since it needs to change network 56 # run as non-root users. However, since the control interface can be used to
|
/src/games/battlestar/ |
battlestar.c | 88 run: 96 goto run;
|
/src/usr.sbin/wg-userspace/ |
wg-userspace.sh | 10 echo run as root 40 sock=/var/run/wg_rump.${ifid}.sock
|