blob: dad937255457836394e05c909b6761bab8dd7255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright (c) 2016, 2019 by Delphix. All rights reserved.
# Copyright 2020 Joyent, Inc.
#
#
# These variables are used by zfstest.ksh to constrain which utilities
# may be used by the suite. The suite will create a directory which is
# the only element of $PATH and create symlinks from that dir to the
# binaries listed below.
# Please keep the contents of each variable sorted for ease of reading
# and maintenance.
#
export USR_BIN_FILES='awk
base64
basename
bc
bunzip2
bzcat
cat
cd
chgrp
chmod
chown
cksum
cmp
compress
coreadm
cp
cpio
cut
date
dd
df
diff
dircmp
dirname
du
echo
egrep
expr
false
file
find
fio
getent
grep
head
hostid
hostname
id
iostat
isainfo
kill
ksh
kstat
ln
logname
ls
md5sum
mdb
mkdir
mktemp
mpstat
mv
nawk
od
pack
pagesize
passwd
pax
pfexec
pgrep
pkill
ppriv
print
printf
ps
pwd
python
raidz_test
readlink
rm
rmdir
rsh
runat
sed
seq
sha256sum
shuf
sleep
sort
stat
strings
su
sudo
sum
svcs
sync
tail
tee
timeout
touch
tr
true
truncate
umask
uname
uncompress
unpack
vmstat
wait
wc
xargs
zlook
zonename'
export USR_SBIN_FILES='arp
clri
dtrace
dumpadm
ff
format
fsck
fsdb
fsirand
fstyp
getmajor
groupadd
groupdel
groupmod
labelit
lockfs
lofiadm
mkfile
mknod
ncheck
newfs
ping
prtvtoc
psrinfo
quotaon
share
svcadm
swap
tar
tunefs
ufsdump
ufsrestore
unshare
useradd
userdel
usermod
zdb
zhack
zinject
zoneadm
zonecfg
zstreamdump'
export SBIN_FILES='fdisk
mount
swapadd
umount
umountall
zfs
zpool'
export ZFSTEST_FILES='btree_test
chg_usr_exec
devname2devid
dir_rd_update
dos_ro
file_check
file_trunc
file_write
getholes
has_unmap
largest_file
libzfs_input_check
mkbusy
mkfiles
mkholes
mktree
mmapwrite
randfree_file
randwritecomp
readmmap
rename_dir
rm_lnkcnt_zero_file
watch_dir'
|