Displaying 5 results from an estimated 5 matches for "fd6cc9f".
2017 Feb 14
1
Re: [PATCH 06/10] copy-out: new 'excludes' optional argument
...from the guest.
> ---
> generator/actions.ml | 16 ++++++++++++++--
> gobject/Makefile.inc | 2 ++
> lib/copy-in-out.c | 13 ++++++++++---
> 3 files changed, 26 insertions(+), 5 deletions(-)
>
> diff --git a/generator/actions.ml b/generator/actions.ml
> index 990eacb..fd6cc9f 100644
> --- a/generator/actions.ml
> +++ b/generator/actions.ml
> @@ -3437,8 +3437,9 @@ Wildcards cannot be used." };
>
> { defaults with
> name = "copy_out"; added = (1, 29, 24);
> - style = RErr, [Pathname "remotepath"; String "loca...
2017 Feb 14
0
[PATCH 06/10] copy-out: new 'excludes' optional argument
...xclude files when extracting a
directory from the guest.
---
generator/actions.ml | 16 ++++++++++++++--
gobject/Makefile.inc | 2 ++
lib/copy-in-out.c | 13 ++++++++++---
3 files changed, 26 insertions(+), 5 deletions(-)
diff --git a/generator/actions.ml b/generator/actions.ml
index 990eacb..fd6cc9f 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -3437,8 +3437,9 @@ Wildcards cannot be used." };
{ defaults with
name = "copy_out"; added = (1, 29, 24);
- style = RErr, [Pathname "remotepath"; String "localdir"], [];
+ style = RErr,...
2017 Feb 14
14
[PATCH 00/10] dib/API: improvements and fixes
Hi,
this patch series does changes mostly in virt-dib, few bug fixes and
a couple of new features (mostly implemented upstream already).
In addition, one new API is added, and a new optional argument for an
existing API is added (the latter is not needed, but could be useful
anyway).
Thanks,
Pino Toscano (10):
dib: fix listing envvars in fake-sudo
dib: source dib "die" script in
2017 Feb 14
2
Re: [PATCH 09/10] New API: mksquashfs
...pport
streaming output.
However I'm fine with this, although perhaps there should be a warning
in the longdesc saying that there may be problems with large files. I
think this API will break in the region of 3GB.
Rich.
> diff --git a/generator/actions.ml b/generator/actions.ml
> index fd6cc9f..409f399 100644
> --- a/generator/actions.ml
> +++ b/generator/actions.ml
> @@ -13292,6 +13292,32 @@ is removed." };
> shortdesc = "search the entries associated to the given inode";
> longdesc = "Internal function for find_inode." };
>
> +...
2017 Feb 14
0
[PATCH 09/10] New API: mksquashfs
...+ if (fclose (fp) != 0) {
+ fprintf (stderr, "fclose: %s: %m\n", tmpfile);
+ send_file_end (1); /* Cancel. */
+ return -1;
+ }
+
+ if (send_file_end (0)) /* Normal end of file. */
+ return -1;
+
+ return 0;
+}
diff --git a/generator/actions.ml b/generator/actions.ml
index fd6cc9f..409f399 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -13292,6 +13292,32 @@ is removed." };
shortdesc = "search the entries associated to the given inode";
longdesc = "Internal function for find_inode." };
+ { defaults with
+ name = "...