|
3 | 3 | # Error codes
|
4 | 4 | # @see /usr/include/sysexits.h
|
5 | 5 |
|
6 |
| -readonly EX_OK=0 # /* successful termination */ |
7 |
| -readonly EX__BASE=64 # /* base value for error messages */ |
8 |
| -readonly EX_USAGE=64 # /* command line usage error */ |
| 6 | +# readonly EX_OK=0 # /* successful termination */ |
| 7 | +# readonly EX__BASE=64 # /* base value for error messages */ |
| 8 | +# readonly EX_USAGE=64 # /* command line usage error */ |
9 | 9 | readonly EX_DATAERR=65 # /* data format error */
|
10 | 10 | readonly EX_NOINPUT=66 # /* cannot open input */
|
11 |
| -readonly EX_NOUSER=67 # /* addressee unknown */ |
12 |
| -readonly EX_NOHOST=68 # /* host name unknown */ |
13 |
| -readonly EX_UNAVAILABLE=69 # /* service unavailable */ |
14 |
| -readonly EX_SOFTWARE=70 # /* internal software error */ |
15 |
| -readonly EX_OSERR=71 # /* system error (e.g., can't fork) */ |
16 |
| -readonly EX_OSFILE=72 # /* critical OS file missing */ |
17 |
| -readonly EX_CANTCREAT=73 # /* can't create (user) output file */ |
| 11 | +# readonly EX_NOUSER=67 # /* addressee unknown */ |
| 12 | +# readonly EX_NOHOST=68 # /* host name unknown */ |
| 13 | +# readonly EX_UNAVAILABLE=69 # /* service unavailable */ |
| 14 | +# readonly EX_SOFTWARE=70 # /* internal software error */ |
| 15 | +# readonly EX_OSERR=71 # /* system error (e.g., can't fork) */ |
| 16 | +# readonly EX_OSFILE=72 # /* critical OS file missing */ |
| 17 | +# readonly EX_CANTCREAT=73 # /* can't create (user) output file */ |
18 | 18 | readonly EX_IOERR=74 # /* input/output error */
|
19 |
| -readonly EX_TEMPFAIL=75 # /* temp failure; user is invited to retry */ |
20 |
| -readonly EX_PROTOCOL=76 # /* remote error in protocol */ |
21 |
| -readonly EX_NOPERM=77 # /* permission denied */ |
22 |
| -readonly EX_CONFIG=78 # /* configuration error */ |
| 19 | +# readonly EX_TEMPFAIL=75 # /* temp failure; user is invited to retry */ |
| 20 | +# readonly EX_PROTOCOL=76 # /* remote error in protocol */ |
| 21 | +# readonly EX_NOPERM=77 # /* permission denied */ |
| 22 | +# readonly EX_CONFIG=78 # /* configuration error */ |
23 | 23 |
|
24 | 24 | if [ -n "${CDIR+x}" ]; then
|
25 | 25 | readonly export EBPF_CLI="${CDIR}/ebpf_py_cli.py"
|
|
0 commit comments