search for: check_success

Displaying 4 results from an estimated 4 matches for "check_success".

Did you mean: check_access
2020 Aug 28
0
[nbdkit PATCH 3/3] nbd: Implement .list_exports
...open='echo "$3"' list_exports="cat '$PWD/$base.list'" \ + default_export="cat '$PWD/$base.list'" + +# Long-running nbd bridge, which should pass export list through +start_nbdkit -P $pid2 -U $sock2 nbd socket=$sock1 dynamic-export=true + +# check_success_one EXPORT +# - nbdinfo of EXPORT on both servers should succeed, with matching output +check_success_one () +{ + nbdinfo --no-content "nbd+unix:///$1?socket=$sock1" > $base.out1 + nbdinfo --no-content "nbd+unix:///$1?socket=$sock2" > $base.out2 + cat $base.out2 +...
2014 Jan 05
1
Segmentation faut on mips device
...to create openssh, but when I run any of the software package openssh I get a segmentation fault (segmentation fault). In this program from the OpenSSL by the same compiler working properly. .... InstallOpenSSl() { cd openssl-1.0.1e make clean ./Configure dist shared - prefix = $SYSROOT -fPIC make check_success make install check_success cd .. } InstallOpenSSH() { cd openssh-6.4p1 make clean ./configure - prefix = $SYSROOT -host = $HOST make LDFLAGS = "-shared-L.-Lopenbsd-compat /" CFLAGS = "-fPIC" check_success make install-files STRIP_OPT = "- strip-program = mips-unknown-linux...
2020 Aug 28
4
[nbdkit PATCH 0/3] .list_exports in nbd plugin
Another series on top of my exportname filter, marking off another todo bullet point. With this, you can now use the NBD plugin as a transparent passthrough of all export names served by the remote server in both directions (list advertisement server to client, and export name from client to server). Eric Blake (3): nbd: Implement .default_export, .export_description nbd: Add
2020 Sep 21
18
[nbdkit PATCH v3 00/14] exportname filter
It's been several weeks since I posted v2 (I got distracted by improving libnbd to better test things, which in turn surfaced some major memory leak problems in nbdsh that are now fixed). Many of the patches are minor rebases from v2, with the biggest changes being fallout from: - patch 2: rename nbdkit_add_default_export to nbdkit_use_default_export - overall: this missed 1.22, so update