search for: 1vr

Displaying 3 results from an estimated 3 matches for "1vr".

Did you mean: 1r
2009 Nov 24
1
[PATCH] supermin: Die with an error if no kernels found (RHBZ#539746).
...helper.in b/appliance/libguestfs-supermin-helper.in index 69f22e4..3e4a260 100755 --- a/appliance/libguestfs-supermin-helper.in +++ b/appliance/libguestfs-supermin-helper.in @@ -39,6 +39,12 @@ initrd="$3" arch=$(echo "@host_cpu@" | sed 's/^i.86$/i?86/') kernels=$(ls -1vr /boot/vmlinuz-*.$arch* 2>/dev/null | grep -v xen; ls -1vr /boot/vmlinuz-* 2>/dev/null | grep -v xen) + +if [ -z "$kernels" ]; then + echo "$0: failed to find a suitable kernel" >&2 + exit 1 +fi + for f in $kernels; do b=$(basename "$f") b=...
2016 May 26
5
[PATCH 0/3] Three virt-p2v patches.
Not very much related to each other. Rich.
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am