search for: head_n

Displaying 14 results from an estimated 14 matches for "head_n".

Did you mean: head_
2017 Mar 13
2
virt-customize fail to inject firstboot script when running it from script.
...uot;followsymlinks:true" libguestfs: trace: is_file = 0 libguestfs: trace: is_file "/etc/debian_version" "followsymlinks:true" libguestfs: trace: is_file = 1 libguestfs: trace: filesize "/etc/debian_version" libguestfs: trace: filesize = 4 libguestfs: trace: head_n 1 "/etc/debian_version" libguestfs: trace: head_n = ["8.1"] libguestfs: trace: is_file "/bin/bash" "followsymlinks:true" libguestfs: trace: is_file = 1 libguestfs: trace: realpath "/bin/bash" libguestfs: trace: realpath = "/bin/bash"...
2017 Mar 14
0
Re: virt-customize fail to inject firstboot script when running it from script.
...> libguestfs: trace: is_file = 0 > libguestfs: trace: is_file "/etc/debian_version" "followsymlinks:true" > libguestfs: trace: is_file = 1 > libguestfs: trace: filesize "/etc/debian_version" > libguestfs: trace: filesize = 4 > libguestfs: trace: head_n 1 "/etc/debian_version" > libguestfs: trace: head_n = ["8.1"] > libguestfs: trace: is_file "/bin/bash" "followsymlinks:true" > libguestfs: trace: is_file = 1 > libguestfs: trace: realpath "/bin/bash" > libguestfs: trace: realpath...
2017 Mar 14
2
Re: virt-customize fail to inject firstboot script when running it from script.
...s: trace: is_file = 0 >> libguestfs: trace: is_file "/etc/debian_version" "followsymlinks:true" >> libguestfs: trace: is_file = 1 >> libguestfs: trace: filesize "/etc/debian_version" >> libguestfs: trace: filesize = 4 >> libguestfs: trace: head_n 1 "/etc/debian_version" >> libguestfs: trace: head_n = ["8.1"] >> libguestfs: trace: is_file "/bin/bash" "followsymlinks:true" >> libguestfs: trace: is_file = 1 >> libguestfs: trace: realpath "/bin/bash" >> libguestfs:...
2019 Apr 24
4
[PATCH 0/3] Few minor changes for bindings
*** BLURB HERE *** Pino Toscano (3): python: modernize inspect_vm example perl: silence usage of add_cdrom in test python: silence usage of add_cdrom in test perl/t/060-handle-properties.t | 7 +++++-- python/examples/inspect_vm.py | 26 ++++++++++++-------------- python/t/test050HandleProperties.py | 5 ++++- 3 files changed, 21 insertions(+), 17 deletions(-) -- 2.20.1
2016 May 04
9
[PATCH 0/8] python: PEP 8 fixes
Hi, this series cleans up the Python sources, either static or generated, including also tests, to make them PEP 8 compliant; see https://www.python.org/dev/peps/pep-0008/ and tools like pep8. Almost all the issues reported by pep8 are fixed, reducing the issues from 3818 to 7. The changes should have no effect on the actual code, while it will help Python users with consistency with other
2018 Sep 19
2
virt-customize is very slow in ubuntu 18.04/centos 7.5
...0x40 guestfsd: main_loop: proc 37 (is_file) took 0.00 seconds libguestfs: trace: is_file = 1 libguestfs: trace: filesize "/etc/hostname" guestfsd: main_loop: new request, len 0x3c guestfsd: main_loop: proc 218 (filesize) took 0.00 seconds libguestfs: trace: filesize = 7 libguestfs: trace: head_n 1 "/etc/hostname" guestfsd: main_loop: new request, len 0x40 commandrvf: stdout=y stderr=y flags=0x20004 commandrvf: head -n 1 libguestfs: trace: head_n = ["ubuntu"] libguestfs: trace: umount_all guestfsd: main_loop: proc 122 (head_n) took 0.01 seconds guestfsd: main_loop: new r...
2012 Jan 12
1
Libguestfs gobject bindings
I'm currently working on gobject bindings for libguestfs. I haven't got as far as compiling anything yet, but I've attached the C header for initial review. Matt -- Matthew Booth, RHCA, RHCSS Red Hat Engineering, Virtualisation Team GPG ID: D33C3490 GPG FPR: 3733 612D 2D05 5458 8A8A 1600 3441 EA19 D33C 3490 -------------- next part -------------- An embedded and
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2017 May 04
4
[PATCH 0/3] generator: Allow returned strings to be annotated as devices.
If we want to permit more than 255 drives to be added, then we will have to add the disks to the same virtio-scsi target using different unit (LUN) numbers. Unfortunately SCSI LUN enumeration in the Linux is not deterministic (eg. two disks with target=0, lun=[0,1] can be enumerated as /dev/sda or /dev/sdb randomly). Dealing with that will require some very complex device name translation on the
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...[Pathname "path"], []; + style = RStringList "lines", [String (Pathname, "path")], []; protocol_limit_warning = true; tests = [ InitISOFS, Always, TestResult ( @@ -3838,7 +3838,7 @@ a list of strings." }; { defaults with name = "head_n"; added = (1, 0, 54); - style = RStringList "lines", [Int "nrlines"; Pathname "path"], []; + style = RStringList "lines", [Int "nrlines"; String (Pathname, "path")], []; protocol_limit_warning = true; tests = [...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.