Fix ping, zfs and zpool to match current style guide.

This commit is contained in:
Peter Tripp
2016-01-16 01:56:13 -08:00
parent 5f6b09b04b
commit c6635ec815
3 changed files with 16 additions and 18 deletions

View File

@@ -8,20 +8,20 @@
- Create a new ZFS filesystem:
`zfs create poolname/newfsname`
`zfs create {{pool_name/filesystem_name}}`
- Delete a ZFS filesystem:
`zfs destroy {{poolname/newfsname}}`
`zfs destroy {{pool_name/filesystem_name}}`
- Create a Snapshot of a ZFS filesystem:
`zfs snapshot {{poolname/filesystem@snapshot-name}}`
`zfs snapshot {{pool_name/filesystem_name}}@{{snapshot_name}}`
- Enable compression on a filesystem:
`zfs set compression=on {{poolname/fileystem}}`
`zfs set compression=on {{pool_name/filesystem_name}}`
- Change mountpoint for a filesytem:
`zfs set mountpoint={{/my/mount/path}} {{poolname/filesystem}}`
`zfs set mountpoint={{/my/mount/path}} {{pool_name/filesystem_name}}`