Inner-Heaven / libzetta-rs

Stable interface for programmatic administration of ZFS from Rust
BSD 2-Clause "Simplified" License
62 stars 15 forks source link

fix(zfs): Allow colons in dataset path segments #262

Closed ociaw closed 9 months ago

ociaw commented 9 months ago

Colons are allowed in component names, such as datasets and snapshots. They are not allowed in pool names, however this parser is not used for pool names. https://docs.oracle.com/cd/E26505_01/html/E37384/gbcpt.html

Fixes #261

andoriyu commented 9 months ago

Thanks!