コード例 #1
0
 def del_bind_mount(self, dst):
     ret = libctcapi.fs_add_bind_mount(self._ct, dst)
     if ret:
         raise LibctError(ret)
コード例 #2
0
 def add_bind_mount(self, src, dst, flags):
     ret = libctcapi.fs_add_bind_mount(self._ct, src, dst, flags)
     if ret:
         raise LibctError(ret)