Displaying 2 results from an estimated 2 matches for "accessfile_full".
2019 Jun 11
0
Re: [nbdkit PATCH v2] Introduce cacheextents filter
...+requires grep --version
> +requires qemu-img --version
> +requires qemu-io --version
> +
> +sock="$(mktemp -u)"
> +sockurl="nbd+unix:///?socket=$sock"
> +pidfile="test-cacheextents.pid"
> +accessfile="test-cacheextents-access.log"
> +accessfile_full="$(pwd)/test-cacheextents-access.log"
$PWD saves a process compared to $(pwd)
> +files="$pidfile $sock"
> +rm -f $files $accessfile
> +cleanup_fn rm -f $files
> +
> +# Intentionally using EOF rather than 'EOF' so that we can pass in the
> +# $accessfi...
2019 Jun 11
5
[nbdkit PATCH v2] Introduce cacheextents filter
...+source ./functions.sh
+set -x
+set -e
+
+requires grep --version
+requires qemu-img --version
+requires qemu-io --version
+
+sock="$(mktemp -u)"
+sockurl="nbd+unix:///?socket=$sock"
+pidfile="test-cacheextents.pid"
+accessfile="test-cacheextents-access.log"
+accessfile_full="$(pwd)/test-cacheextents-access.log"
+files="$pidfile $sock"
+rm -f $files $accessfile
+cleanup_fn rm -f $files
+
+# Intentionally using EOF rather than 'EOF' so that we can pass in the
+# $accessfile_full
+start_nbdkit \
+ -P $pidfile \
+ -U $sock \
+ --filter...