search for: do_dquote

Displaying 8 results from an estimated 8 matches for "do_dquote".

2015 May 05
3
libguestfs init problem
...then I executed (1) cc prog.c -o prog `pkg-config libguestfs --cflags --libs` , (2)./prog /var/lib/libvirt/images/vm.img libguestfs: error: aug_init: aug_init: / (flags 48): Syntax error in lens definition: /usr/share/guestfs/guestfs_lvm_conf.aug:28.25-.40:Could not load module Quote for Quote.do_dquote /usr/share/guestfs/guestfs_lvm_conf.aug:28.25-.40:Undefined variable Quote.do_dquote /usr/share/guestfs/guestfs_lvm_conf.aug:29.31-.44:Could not load module Rx for Rx.relinteger /usr/share/guestfs/guestfs_lvm_conf.aug:29.31-.44:Undefined variable Rx.relinteger /usr/share/guestfs/guestfs_lvm_conf.au...
2015 May 06
0
Re: libguestfs init problem
...b/libvirt/images) and > the vm virtual machine is running. after this command ,the errors appears: > > libguestfs: error: aug_init: aug_init: / (flags 48): Syntax error in lens > definition: /usr/share/guestfs/guestfs_lvm_conf.aug:28.25-.40:Could not > load module Quote for Quote.do_dquote > /usr/share/guestfs/guestfs_lvm_conf.aug:28.25-.40:Undefined variable > Quote.do_dquote > /usr/share/guestfs/guestfs_lvm_conf.aug:29.31-.44:Could not load module Rx > for Rx.relinteger > /usr/share/guestfs/guestfs_lvm_conf.aug:29.31-.44:Undefined variable > Rx.relinteger > /us...
2014 Oct 24
1
[PATCH v3] daemon: Remove custom Augeas lenses.
v3: - Don't remove the LVM transform.
2014 Oct 24
1
[PATCH v2] daemon: Remove custom Augeas lenses.
v2 of previous patch, which fixes some missing bits. For now I'm going to go with Pino's RHEL 7.1 patch, since it is at least smaller than this. So I'm sending this to the list just to have it archived for later. Rich.
2014 Oct 24
2
[PATCH] daemon: Remove custom Augeas lenses.
...the safer whitelist approach. *) - (* View: identifier - * The left hand side of a definition *) - let identifier = /[a-zA-Z0-9_-]+/ - - (* strings can contain backslash-escaped dquotes, but I don't know - * how to get the message across to augeas *) - let str = [label "str". Quote.do_dquote (store /([^\"]|\\\\.)*/)] - let int = [label "int". store Rx.relinteger] - (* View: flat_literal - * A literal without structure *) - let flat_literal = int|str - - (* allow multiline and mixed int/str, used for raids and stripes *) - (* View: list - * A list containing flat litera...
2017 Jul 26
5
[PATCH 0/2] daemon: Reimplement handling of lvm.conf and filters.
Simplify how we handle lvm.conf.
2014 Aug 26
6
[PATCH 0/3] fix setting lvm filter with newer lvm2
Hi, newer lvm2 releases don't have have uncommented "filter" lines, so the current way to edit lvm.conf doesn't work anymore. Instead, switch to augeas (with a "custom" len) for a cleaner and working way to set the lvm filter. Pino Toscano (3): daemon: add add_sprintf daemon: move AUGEAS_ERROR to the common header daemon: lvm-filter: use augeas for setting the
2016 Nov 10
5
[PATCH v5 0/3] v2v and augeas
Augeas 1.7.0 was released a couple of days ago. By encouraging everyone to upgrade to this we can drop several calls to aug_transform and also our custom copies of two lenses, and a lot of related code. Rich.