search for: 21c8d99

Displaying 5 results from an estimated 5 matches for "21c8d99".

Did you mean: 21.899
2014 Feb 04
0
[PATCH 2/3] New API: part-get-name (RHBZ#593511).
...at partitions are numbered from 1. + +The partition name can only be read on certain types of partition +table. This works on C<gpt> but not on C<mbr> partitions." }; + ] (* Non-API meta-commands available only in guestfish. diff --git a/src/MAX_PROC_NR b/src/MAX_PROC_NR index 21c8d99..1c105f1 100644 --- a/src/MAX_PROC_NR +++ b/src/MAX_PROC_NR @@ -1 +1 @@ -415 +416 -- 1.8.3.1
2014 Jan 13
0
[PATCH] New API: copy-attributes.
...+Copy B<all> the attributes from C<source> to C<destination>. Enabling it +enables all the other flags, if they are not specified already. + +=back" }; + ] (* Non-API meta-commands available only in guestfish. diff --git a/src/MAX_PROC_NR b/src/MAX_PROC_NR index d1b9f6a..21c8d99 100644 --- a/src/MAX_PROC_NR +++ b/src/MAX_PROC_NR @@ -1 +1 @@ -414 +415 -- 1.8.3.1
2014 Jan 07
0
Re: RFC: copy-attributes command
...ion>. > + > +=item C<xattributes> > + > +Copy the extended attributes from C<source> to C<destination>." }; > + > ] > > (* Non-API meta-commands available only in guestfish. > diff --git a/src/MAX_PROC_NR b/src/MAX_PROC_NR > index d1b9f6a..21c8d99 100644 > --- a/src/MAX_PROC_NR > +++ b/src/MAX_PROC_NR > @@ -1 +1 @@ > -414 > +415 In general terms it all looks fine to me. You probably want a follow-on patch which changes guestfish edit / virt-edit / etc (any place we copy attributes) to use the new call. Rich. -- Richard Jo...
2014 Feb 04
6
[PATCH 0/3] virt-resize: preserve GPT partitions label
Hi, attached there are few patches to implement a way to get the label of GPT partitions (refactoring an existing function and adding a new daemon API) and using it in virt-resize to restore them when copying partitions. Thanks, Pino Toscano (3): daemon: parted: refactor sgdisk info parsing code New API: part-get-name (RHBZ#593511). resize: preserve GPT partition names (RHBZ#1060404).
2014 Jan 07
8
RFC: copy-attributes command
Hi, attached there is a prototype of patch for adding a new copy-attributes command. Such command would allow copy the attributes of a "file" to another, so for example in guestfish: copy-attributes foo bar permissions:true xattributes:false would only copy the permissions of foo to bar, not copying its extended attributes too. Just few notes: - my first daemon command, so