search for: unknown_line

Displaying 2 results from an estimated 2 matches for "unknown_line".

2014 Apr 02
2
[PATCH] builder: better handle some index parsing errors
...letions(-) diff --git a/builder/index-parse.y b/builder/index-parse.y index f08a683..310870d 100644 --- a/builder/index-parse.y +++ b/builder/index-parse.y @@ -78,6 +78,7 @@ typedef void *yyscan_t; %token EMPTY_LINE %token PGP_PROLOGUE %token PGP_EPILOGUE +%token UNKNOWN_LINE %type <section> sections section %type <field> fields field diff --git a/builder/index-scan.l b/builder/index-scan.l index 073d85f..e3fe377 100644 --- a/builder/index-scan.l +++ b/builder/index-scan.l @@ -29,8 +29,6 @@ #define YY_EXTRA_TYPE struct parse_context * #define YY_USER...
2015 Jul 08
7
[PATCH 0/6] RFC: basic subscription-manager support in virt-customize
Hi, this series introduces a basic support for registering/attaching/unregistering RHEL guests using subscription-manager, so it is possible to do for example: $ cat <<EOF > sm.conf [general] username=user password=pass [attach-0] pool=ID EOF $ virt-customize -a rhel-guest.qcow2 \ --sm-config sm.conf --sm-register --sm-attach 0 \ --install pkg1 --install pkg2