7 lines
134 B
Bash
7 lines
134 B
Bash
|
#!/bin/bash -
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
# Run nbdkit and check that nbdinfo can connect back to it.
|
||
|
nbdkit -U - memory 1G --run 'nbdinfo "$uri"'
|