search for: _guestfs_virttools

Displaying 10 results from an estimated 10 matches for "_guestfs_virttools".

2016 Aug 25
0
[PATCH 5/5] bash completion: Add missing bash completion scripts (RHBZ#1367738).
...-F _guestfish virt-copy-out +complete -o default -F _guestfish virt-tar-in +complete -o default -F _guestfish virt-tar-out diff --git a/bash/virt-alignment-scan b/bash/virt-alignment-scan index edcc093..055bad1 100644 --- a/bash/virt-alignment-scan +++ b/bash/virt-alignment-scan @@ -36,10 +36,29 @@ _guestfs_virttools () _init_completion -s || return case "$prev" in + --align-first) + COMPREPLY=( $( compgen -W "never always auto" -- "$cur") ) + return ;; + --check-tmpdir) + COMPREPLY=( $( compgen -W "ignore i continue c...
2014 Nov 26
5
[PATCH] tools: implement --short-options
Just like --long-options, it makes it possible to know which short options are supported by each tool; this can help improving the bash completion, for example. --- align/scan.c | 3 +++ builder/cmdline.ml | 1 + cat/cat.c | 3 +++ cat/filesystems.c | 3 +++ cat/log.c | 3 +++ cat/ls.c | 3 +++
2016 Aug 25
7
[PATCH 0/5] bash completion: Add missing bash completion scripts (RHBZ#1367738).
This implements most of RHBZ#1367738. I didn't bother with virt-v2v-copy-to-local and virt-win-reg, but all the other tools now have full bash completion. Rich.
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.
...+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 +} && +complete -o default -F _virt_tail virt-tail diff --git a/cat/Makefile.am b/cat/Makefile.am index 796e808..02a8064 100644 ---...
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.
...+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 +} && +complete -o default -F _virt_tail virt-tail diff --git a/cat/Makefile.am b/cat/Makefile.am index 796e808..02a8064 100644 ---...
2016 Oct 03
1
Re: [PATCH v2 1/2] New tool: virt-tail.
...irt-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 > +} && > +complete -o default -F _virt_tail virt-tail > diff --git a/cat/Makefile.am b/cat/...
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.
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