Lvm::Lvm(const string& subvolume, const string& root_prefix, const string& mount_type)
: Filesystem(subvolume, root_prefix), mount_type(mount_type),
caps(LvmCapabilities::get_lvm_capabilities()),
- cache(LvmCache::get_lvm_cache())
+ cache(LvmCache::get_lvm_cache()), sh(NULL)
{
if (access(LVCREATEBIN, X_OK) != 0)
{
const string mount_type;
const LvmCapabilities* caps;
LvmCache* cache;
+ SelinuxLabelHandle* sh;
bool detectThinVolumeNames(const MtabData& mtab_data);
void activateSnapshot(const string& vg_name, const string& lv_name) const;