mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
38c9494878
Commit id '887dd362' added support for a netfs pool format type 'cifs' and 'gluster' in order to add rng support for Samba and glusterfs netfs pools. Originally, the CIFS type support was added as part of commit id '61fb6979'. Eventually commit id 'b325be12' fixed the gluster rng definition to match expectations. As it turns out the CIFS rng needed a similar change since the directory path is not an absDirPath, rather just a dirPath will be required.
16 lines
386 B
XML
16 lines
386 B
XML
<pool type='netfs'>
|
|
<name>netfs-cifs</name>
|
|
<uuid>d5609ced-94b1-489e-b218-eff35c30336a</uuid>
|
|
<capacity unit='bytes'>0</capacity>
|
|
<allocation unit='bytes'>0</allocation>
|
|
<available unit='bytes'>0</available>
|
|
<source>
|
|
<host name='example.com'/>
|
|
<dir path='samba_share'/>
|
|
<format type='cifs'/>
|
|
</source>
|
|
<target>
|
|
<path>/mnt/cifs</path>
|
|
</target>
|
|
</pool>
|