search for: 80f6e51

Displaying 6 results from an estimated 6 matches for "80f6e51".

Did you mean: 80f6be5
2016 Oct 03
3
[PATCH v2 0/2] New tool: virt-tail.
Nothing new in the virt-tail command itself, but the second commit includes a simple test. Rich.
2016 Oct 03
0
[PATCH v2 1/2] New tool: virt-tail.
...log virt-ls \ virt-p2v-make-disk virt-p2v-make-kickstart virt-p2v-make-kiwi \ -virt-resize virt-sparsify virt-sysprep: +virt-resize virt-sparsify virt-sysprep \ +virt-tail: rm -f $@ $(LN_S) virt-alignment-scan $@ diff --git a/bash/virt-alignment-scan b/bash/virt-alignment-scan index 055bad1..80f6e51 100644 --- a/bash/virt-alignment-scan +++ b/bash/virt-alignment-scan @@ -204,3 +204,9 @@ _virt_sysprep () _guestfs_virttools "virt-sysprep" 0 } && complete -o default -F _virt_sysprep virt-sysprep + +_virt_tail () +{ + _guestfs_virttools "virt-tail" 1 +} &&...
2016 Oct 01
1
[PATCH] New tool: virt-tail.
This adds a new tool which does a follow operation (ie. tail -f) on one or more log/text files inside the guest. I've only done limited testing, but it works for me for tailing various long-running builds inside guests which I'm doing at the moment. There are no tests at present. Rich.
2016 Oct 03
0
[PATCH v3 1/2] New tool: virt-tail.
...log virt-ls \ virt-p2v-make-disk virt-p2v-make-kickstart virt-p2v-make-kiwi \ -virt-resize virt-sparsify virt-sysprep: +virt-resize virt-sparsify virt-sysprep \ +virt-tail: rm -f $@ $(LN_S) virt-alignment-scan $@ diff --git a/bash/virt-alignment-scan b/bash/virt-alignment-scan index 055bad1..80f6e51 100644 --- a/bash/virt-alignment-scan +++ b/bash/virt-alignment-scan @@ -204,3 +204,9 @@ _virt_sysprep () _guestfs_virttools "virt-sysprep" 0 } && complete -o default -F _virt_sysprep virt-sysprep + +_virt_tail () +{ + _guestfs_virttools "virt-tail" 1 +} &&...
2016 Oct 03
1
Re: [PATCH v2 1/2] New tool: virt-tail.
...2v-make-kickstart virt-p2v-make-kiwi \ > -virt-resize virt-sparsify virt-sysprep: > +virt-resize virt-sparsify virt-sysprep \ > +virt-tail: > rm -f $@ > $(LN_S) virt-alignment-scan $@ > > diff --git a/bash/virt-alignment-scan b/bash/virt-alignment-scan > index 055bad1..80f6e51 100644 > --- a/bash/virt-alignment-scan > +++ b/bash/virt-alignment-scan > @@ -204,3 +204,9 @@ _virt_sysprep () > _guestfs_virttools "virt-sysprep" 0 > } && > complete -o default -F _virt_sysprep virt-sysprep > + > +_virt_tail () > +{ > + _g...
2016 Oct 03
3
[PATCH v3 0/2] New tool: virt-tail.
Since v2: - Fix the things that Pino mentioned, except the recursion. - Implement Windows support. For Windows support to be sane, I had to inline the add_and_mount code. Rich.