.. note:: Setting ``--casesensitive=0`` option implicitly enables
Unicode normalization on the subvolume.
-A separate encryption tag is available for use with encryption. This is to be used tagging the subvolume, with
+A separate encryption tag is available for use with encryption. This is to be used tagging the subvolume with
an identifier that is useful for system administrators or other services. By default, the tag is empty. This tag
is not required, but can be a useful step in setting up encrypted subvolumes.
def lchown(self, fs_path, uid, gid):
"""
- Change ownership of a link with uid and gid provided.
+ Change the ownership of a link with the provided UID and GID.
"""
abs_path = os.path.join(self.hostfs_mntpt, fs_path)
def symlink(self, fs_path, symlink_path):
"""
- Change ownership of a link with uid and gid provided.
+ Create a symlink to the provided file/path with the provided name.
"""
src_path = os.path.join(self.hostfs_mntpt, fs_path)
def copy_file_range(self, src, dest, length):
"""
- Truncate a file of certain size
+ Copy a portion of data from src file to dest file.
"""
src_path = os.path.join(self.hostfs_mntpt, src)
def touch_os(self, fs_path):
"""
- Create a dentry if it doesn't already exist. Use open in os module.
+ Create a dentry if it doesn't already exist. Uses the open method in the os module.
:param fs_path:
:return: