File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,12 @@ class ZFS:
77
77
pools : Generator [ZFSPool , None , None ] = ...
78
78
snapshots : Generator [ZFSSnapshot , None , None ] = ...
79
79
__pyx_vtable__ = ... # type: Any
80
- def __init__ (self , history : bool = True , history_prefix : str = '' ) -> None : ...
80
+ def __init__ (
81
+ self ,
82
+ history : bool = True ,
83
+ history_prefix : str = '' ,
84
+ mnttab_cache : bool = True
85
+ ) -> None : ...
81
86
def create (
82
87
self ,
83
88
name : str ,
Original file line number Diff line number Diff line change @@ -280,7 +280,11 @@ def get_zfs(
280
280
history_prefix : str = "<iocage>"
281
281
) -> ZFS :
282
282
"""Get an instance of iocages enhanced ZFS class."""
283
- zfs = ZFS (history = history , history_prefix = history_prefix )
283
+ zfs = ZFS (
284
+ history = history ,
285
+ history_prefix = history_prefix ,
286
+ mnttab_cache = False
287
+ )
284
288
zfs .logger = libioc .helpers_object .init_logger (zfs , logger )
285
289
return zfs
286
290
You can’t perform that action at this time.
0 commit comments