search for: 206c680

Displaying 2 results from an estimated 2 matches for "206c680".

Did you mean: 206680
2020 Feb 10
3
[nbdkit PATCH] eval: Allow user override of 'missing'
...>SCRIPT + +The parameter C<missing> defines a script that will be called in place +of any other callback not explicitly provided. If omitted, this +defaults to the script "exit 2". + =back =head1 ENVIRONMENT VARIABLES diff --git a/tests/test-eval.sh b/tests/test-eval.sh index 206c680..4557b02 100755 --- a/tests/test-eval.sh +++ b/tests/test-eval.sh @@ -42,7 +42,9 @@ cleanup_fn rm -f $files nbdkit -U - eval \ get_size='echo 64M' \ pread='dd if=/dev/zero count=$3 iflag=count_bytes' \ + missing='echo "in missing: $@" >> ev...
2020 Feb 10
0
Re: [nbdkit PATCH] eval: Allow user override of 'missing'
...> defines a script that will be called in place > +of any other callback not explicitly provided. If omitted, this > +defaults to the script "exit 2". > + > =back > > =head1 ENVIRONMENT VARIABLES > diff --git a/tests/test-eval.sh b/tests/test-eval.sh > index 206c680..4557b02 100755 > --- a/tests/test-eval.sh > +++ b/tests/test-eval.sh > @@ -42,7 +42,9 @@ cleanup_fn rm -f $files > nbdkit -U - eval \ > get_size='echo 64M' \ > pread='dd if=/dev/zero count=$3 iflag=count_bytes' \ > + missing='echo &qu...