From: Peter Krempa Date: Thu, 25 Aug 2022 09:20:50 +0000 (+0200) Subject: schemas: Extract overrides for the domain element from 'domain.rng' X-Git-Tag: v8.8.0-rc1~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b025718b52edd0dd0f90ef24992ade788381ae76;p=thirdparty%2Flibvirt.git schemas: Extract overrides for the domain element from 'domain.rng' Move the overrides into a single file so that later patches can add another top level element 'inactiveDomain' used in snapshots. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/src/conf/schemas/domain.rng b/src/conf/schemas/domain.rng index b93bbed959..adc4386a27 100644 --- a/src/conf/schemas/domain.rng +++ b/src/conf/schemas/domain.rng @@ -6,16 +6,6 @@ - - - - - - - - - - - + diff --git a/src/conf/schemas/domainoverrides.rng b/src/conf/schemas/domainoverrides.rng new file mode 100644 index 0000000000..13b18a28ea --- /dev/null +++ b/src/conf/schemas/domainoverrides.rng @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/conf/schemas/meson.build b/src/conf/schemas/meson.build index 700161bf75..1bb09b4c5d 100644 --- a/src/conf/schemas/meson.build +++ b/src/conf/schemas/meson.build @@ -8,6 +8,7 @@ schema_files = [ 'domaincheckpoint.rng', 'domaincommon.rng', 'domain.rng', + 'domainoverrides.rng', 'domainsnapshot.rng', 'interface.rng', 'networkcommon.rng',