<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bwlp/master-sync-shared.git/src/main/resources/libvirt, branch master</title>
<subtitle>Gemeinsam genutzte Funktionen und Klassen vom Masterserver und Satelliten-Daemon</subtitle>
<id>https://git.openslx.org/bwlp/master-sync-shared.git/atom/src/main/resources/libvirt?h=master</id>
<link rel='self' href='https://git.openslx.org/bwlp/master-sync-shared.git/atom/src/main/resources/libvirt?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/'/>
<updated>2025-08-14T10:30:01+00:00</updated>
<entry>
<title>Update vbox and libvirt schema files</title>
<updated>2025-08-14T10:30:01+00:00</updated>
<author>
<name>Simon Rettberg</name>
</author>
<published>2025-08-14T10:30:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=b93d4f1e174d6b6004565e85792d221816d6bbf6'/>
<id>urn:sha1:b93d4f1e174d6b6004565e85792d221816d6bbf6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[libvirt] Update rng files (v11.0.0)</title>
<updated>2025-01-22T13:31:10+00:00</updated>
<author>
<name>Simon Rettberg</name>
</author>
<published>2025-01-22T13:31:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=55e96d237c53aac356fac2b26fb6e17e5bf15a94'/>
<id>urn:sha1:55e96d237c53aac356fac2b26fb6e17e5bf15a94</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[libvirt] Update rng files (10.3.0)</title>
<updated>2024-05-08T13:40:44+00:00</updated>
<author>
<name>Steffen Ritter</name>
</author>
<published>2024-05-08T13:40:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=c8a3b43604ec714af26f983d58138e9f2f5f9bc5'/>
<id>urn:sha1:c8a3b43604ec714af26f983d58138e9f2f5f9bc5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[libvirt] Update rng files</title>
<updated>2023-04-26T10:25:25+00:00</updated>
<author>
<name>Simon Rettberg</name>
</author>
<published>2023-04-26T10:25:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=b930ad166b287246ddda130a74e558e38960af70'/>
<id>urn:sha1:b930ad166b287246ddda130a74e558e38960af70</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update libvirt rng files</title>
<updated>2023-02-01T12:55:42+00:00</updated>
<author>
<name>Simon Rettberg</name>
</author>
<published>2023-02-01T12:55:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=337f21af9c33ddb55706977841841d71c1ea05d8'/>
<id>urn:sha1:337f21af9c33ddb55706977841841d71c1ea05d8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Force Unix line endings for Libvirt XML files (even on Windows platforms)</title>
<updated>2022-02-04T11:19:44+00:00</updated>
<author>
<name>Manuel Bentele</name>
</author>
<published>2022-02-04T11:19:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=255c829b598a7a3151489e7121c56b219e530777'/>
<id>urn:sha1:255c829b598a7a3151489e7121c56b219e530777</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update RNG schema files of Libvirt to version 7.3</title>
<updated>2021-06-30T08:58:27+00:00</updated>
<author>
<name>Manuel Bentele</name>
</author>
<published>2021-06-30T08:58:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=c01d5fc4e6c40e8eb005e6b95eafb4cd73baca66'/>
<id>urn:sha1:c01d5fc4e6c40e8eb005e6b95eafb4cd73baca66</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add libosinfo database and validation schema files for Libvirt</title>
<updated>2021-05-04T06:50:34+00:00</updated>
<author>
<name>Manuel Bentele</name>
</author>
<published>2021-05-04T06:50:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=bf9fe604847991ad029980703a6c72b8a309b5a1'/>
<id>urn:sha1:bf9fe604847991ad029980703a6c72b8a309b5a1</id>
<content type='text'>
The libosinfo database consists of a single XML file aggreated from
the original libosinfo database which is split accross multiple XML
files. The aggregation is achieved by the following commands where
the original data base files are located under /usr/share/osinfo/os:

  FILES=(/usr/share/osinfo/os/**/*.xml)
  START="$(sed -n '/^&lt;libosinfo version=/,/&gt;$/p' "${FILES[0]}")"
  END="&lt;/libosinfo&gt;"

  for FILE in "${FILES[@]}"; do
      CONTENT+="$(sed -n '/&lt;os/,/&lt;\/os&gt;/p' "${FILE}")"$'\n'
  done

  echo -e "${START}\n${CONTENT}${END}" &gt; \
      src/main/resources/libvirt/libosinfo/xml/osinfo.xml
</content>
</entry>
<entry>
<title>Add support for QEMU VMs (based on Libvirt domain XML documents)</title>
<updated>2021-01-29T11:25:44+00:00</updated>
<author>
<name>Manuel Bentele</name>
</author>
<published>2021-01-29T11:25:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=706910e440527c22f176bcab0032c37c60357c25'/>
<id>urn:sha1:706910e440527c22f176bcab0032c37c60357c25</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add Libvirt 7.0.0 RelaxNG schema files for QEMU</title>
<updated>2021-01-29T09:06:32+00:00</updated>
<author>
<name>Manuel Bentele</name>
</author>
<published>2021-01-29T09:06:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/master-sync-shared.git/commit/?id=f955adcf7005f09b698a1ddc273132492d8daba3'/>
<id>urn:sha1:f955adcf7005f09b698a1ddc273132492d8daba3</id>
<content type='text'>
</content>
</entry>
</feed>
