Displaying 20 results from an estimated 25 matches for "0o777".
Did you mean:
0777
2015 Jan 15
1
[PATCH] mknod: filter modes in mkfifo, mknod_b, mknod_c (RHBZ#1182463).
...diff --git a/generator/actions.ml b/generator/actions.ml
index 96a9dd6..c48ad1a 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -6173,7 +6173,9 @@ The mode actually set is affected by the umask." };
InitScratchFS, Always, TestResult (
[["mkfifo"; "0o777"; "/mkfifo"];
["stat"; "/mkfifo"]],
- "S_ISFIFO (ret->mode) && (ret->mode & 0777) == 0755"), []
+ "S_ISFIFO (ret->mode) && (ret->mode & 0777) == 0755"), [];
+ InitScratchFS, Alway...
2013 Jun 14
3
[PATCH 0/2] Fix inspection of Fedora guests (RHBZ#974489).
Here is a preliminary fix for this bug.
I'm running the test suite on this now.
Rich.
2019 Sep 20
0
[PATCH v4 01/12] v2v: Factor out the nbdkit VDDK code into a new module.
...- run_command ["chcon"; "system_u:object_r:svirt_image_t:s0";
- sock]
- );
- );
- (* ... and the regular Unix permissions, in case qemu is
- * running as another user.
- *)
- chmod sock 0o777;
-
- (* nbdkit from a vddk source always presents us with the raw
- * disk blocks from the guest, so force the format to raw here.
- *)
- { disk with s_qemu_uri = qemu_uri;
- s_format = Some "raw" }
- ) disks in
-
- if verbose (...
2019 Apr 08
12
[PATCH 00/11] v2v: Change virt-v2v to use nbdkit for input in several modes.
This series (except the last one) changes virt-v2v to use nbdkit for
several input modes:
-i vmx -it vddk: No change in functionality, as this already uses
nbdkit-vddk-plugin, but the code is refactored for the other modes to
use.
-i libvirtxml: Use nbdkit-curl-plugin instead of qemu curl.
vCenter: Use nbdkit-curl-plugin instead of qemu curl.
xen: Use nbdkit-ssh-plugin instead of qemu
2018 Mar 08
6
[PATCH v5 0/4] v2v: Add -o rhv-upload output mode.
Mainly minor fixes and code cleanups over the v4 patch.
There are still several problems with this patch, but it is in a
reviewable state, especially the Python code.
Rich.
2019 Jul 19
12
[PATCH v3 00/12] v2v: Change virt-v2v to use nbdkit for input in several modes.
v2 was posted here:
https://www.redhat.com/archives/libguestfs/2019-July/msg00115.html
This also has links to earlier versions.
v3:
- The 01/11 patch in v2 included a bunch of unnecessary plus one
necessary change to how input_password is passed around. I moved
the necessary change into the final patch (implementing SSH
password authentication) and dropped the rest.
- The 01/11
2018 Mar 08
0
[PATCH v5 4/4] v2v: Add -o rhv-upload output mode.
...ignore (
+ run_command ["chcon"; "system_u:object_r:svirt_image_t:s0";
+ sock]
+ );
+ );
+ (* ... and the regular Unix permissions, in case qemu is
+ * running as another user.
+ *)
+ chmod sock 0o777;
+
+ (* Tell ‘qemu-img convert’ to write to the nbd socket which is
+ * connected to nbdkit.
+ *)
+ let json_params = [
+ "file.driver", JSON.String "nbd";
+ "file.path", JSON.String sock;
+ "file.export&quo...
2018 Mar 08
2
Re: [PATCH v5 4/4] v2v: Add -o rhv-upload output mode.
...["chcon"; "system_u:object_r:svirt_image_t:s0";
> + sock]
> + );
> + );
> + (* ... and the regular Unix permissions, in case qemu is
> + * running as another user.
> + *)
> + chmod sock 0o777;
> +
> + (* Tell ‘qemu-img convert’ to write to the nbd socket which is
> + * connected to nbdkit.
> + *)
> + let json_params = [
> + "file.driver", JSON.String "nbd";
> + "file.path", JSON.String soc...
2019 Jul 11
11
[PATCH v2 00/11] v2v: Change virt-v2v to use nbdkit for input in several modes.
Originally posted here:
https://www.redhat.com/archives/libguestfs/2019-April/thread.html#00054
https://www.redhat.com/archives/libguestfs/2019-April/msg00076.html
https://www.redhat.com/archives/libguestfs/2019-April/msg00126.html
This is a rebase on top of current master branch with no other
changes. The first patch in the old series was pushed a while back,
and the last "TEMPORARY"
2019 Sep 20
15
[PATCH v4 00/12] v2v: Change virt-v2v to use nbdkit for input in several modes.
v3 posted here:
https://www.redhat.com/archives/libguestfs/2019-July/msg00200.html
v4:
- The first patch in the v3 series was just a trivial doc whitespace
fix so I pushed it.
- There's a new patch using the nbdkit-retry-filter. This is not
actually upstream in nbdkit but we know enough about how it will
work.
- Rebased against master and reran the tests.
Rich.
2018 Mar 11
2
Re: [PATCH v5 4/4] v2v: Add -o rhv-upload output mode.
...["chcon"; "system_u:object_r:svirt_image_t:s0";
> + sock]
> + );
> + );
> + (* ... and the regular Unix permissions, in case qemu is
> + * running as another user.
> + *)
> + chmod sock 0o777;
> +
> + (* Tell ‘qemu-img convert’ to write to the nbd socket which is
> + * connected to nbdkit.
> + *)
> + let json_params = [
> + "file.driver", JSON.String "nbd";
> + "file.path", JSON.String soc...
2018 Mar 09
1
Re: [PATCH v5 4/4] v2v: Add -o rhv-upload output mode.
...ystem_u:object_r:svirt_image_t:s0";
> + sock]
> + );
> + );
> + (* ... and the regular Unix permissions, in case qemu is
> + * running as another user.
> + *)
> + chmod sock 0o777;
> +
> + (* Tell ‘qemu-img convert’ to write to the nbd socket which is
> + * connected to nbdkit.
> + *)
> + let json_params = [
> + "file.driver", JSON.String "nbd";
> + "file...
2018 Mar 21
2
[PATCH v6] v2v: Add -o rhv-upload output mode.
v5 was here:
https://www.redhat.com/archives/libguestfs/2018-March/msg00032.html
There is only a single patch in this version because the other
patches went upstream.
This patch adds the virt-v2v -o rhv-upload mode
(https://bugzilla.redhat.com/show_bug.cgi?id=1557273).
Compared to v5, this adds the ability to make zero, trim and flush
requests to the oVirt imageio server
2018 Mar 21
0
[PATCH v6] v2v: Add -o rhv-upload output mode.
...ignore (
+ run_command ["chcon"; "system_u:object_r:svirt_image_t:s0";
+ sock]
+ );
+ );
+ (* ... and the regular Unix permissions, in case qemu is
+ * running as another user.
+ *)
+ chmod sock 0o777;
+
+ (* Tell ‘qemu-img convert’ to write to the nbd socket which is
+ * connected to nbdkit.
+ *)
+ let json_params = [
+ "file.driver", JSON.String "nbd";
+ "file.path", JSON.String sock;
+ "file.export&quo...
2018 Mar 06
5
[PATCH v4 0/3] v2v: Add -o rhv-upload output mode.
Previous versions:
v3: https://www.redhat.com/archives/libguestfs/2018-March/msg00000.html
v2: https://www.redhat.com/archives/libguestfs/2018-February/msg00177.html
v1: https://www.redhat.com/archives/libguestfs/2018-February/msg00139.html
This completely rethinks the approach taken by the previous patches.
Instead of trying to involve qemu's curl driver, this uses a small
Python 3
2018 Mar 22
0
[PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...ignore (
+ run_command ["chcon"; "system_u:object_r:svirt_image_t:s0";
+ sock]
+ );
+ );
+ (* ... and the regular Unix permissions, in case qemu is
+ * running as another user.
+ *)
+ chmod sock 0o777;
+
+ (* Tell ‘qemu-img convert’ to write to the nbd socket which is
+ * connected to nbdkit.
+ *)
+ let json_params = [
+ "file.driver", JSON.String "nbd";
+ "file.path", JSON.String sock;
+ "file.export&quo...
2018 Apr 05
2
[PATCH v8] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
v7 was here:
https://www.redhat.com/archives/libguestfs/2018-March/msg00143.html
Since then:
- Earlier patches are now upstream.
- The to-do list is moved from the commit message to the TODO file.
- This version forces -of raw + -oa sparse and gives an error in
any other mode. We intend to lift these restrictions later.
- Tested against latest imageio which supports longer timeouts,
2018 Apr 05
0
[PATCH v8] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...ignore (
+ run_command ["chcon"; "system_u:object_r:svirt_image_t:s0";
+ sock]
+ );
+ );
+ (* ... and the regular Unix permissions, in case qemu is
+ * running as another user.
+ *)
+ chmod sock 0o777;
+
+ (* Tell ‘qemu-img convert’ to write to the nbd socket which is
+ * connected to nbdkit.
+ *)
+ let json_params = [
+ "file.driver", JSON.String "nbd";
+ "file.path", JSON.String sock;
+ "file.export&quo...
2018 Apr 10
0
[PATCH v9] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...ignore (
+ run_command ["chcon"; "system_u:object_r:svirt_image_t:s0";
+ sock]
+ );
+ );
+ (* ... and the regular Unix permissions, in case qemu is
+ * running as another user.
+ *)
+ chmod sock 0o777;
+
+ (* Tell ‘qemu-img convert’ to write to the nbd socket which is
+ * connected to nbdkit.
+ *)
+ let json_params = [
+ "file.driver", JSON.String "nbd";
+ "file.path", JSON.String sock;
+ "file.export&quo...
2018 Apr 10
2
[PATCH v9] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
v8 was here:
https://www.redhat.com/archives/libguestfs/2018-April/msg00022.html
v8 -> v9:
- Addresses the only feedback from Tomáš.
Rich.