blob: 38f48dd4db80d6e265a2f44511354cae0c2cd571 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# exit 1 until qemu-nbd is running
[ -f /tmp/qemu-nbd.pid ] || exit 1
#
if nbd-client --systemd-mark --persist 127.0.0.1 2000 /dev/nbd0; then
ln -sf /dev/nbd0 /dev/root
exit 0
else
exit 1
fi
|