Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/python-bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bareos/fuse/node/bvfsfile.py')
-rw-r--r--bareos/fuse/node/bvfsfile.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bareos/fuse/node/bvfsfile.py b/bareos/fuse/node/bvfsfile.py
index 06e7fc4..636b336 100644
--- a/bareos/fuse/node/bvfsfile.py
+++ b/bareos/fuse/node/bvfsfile.py
@@ -8,15 +8,16 @@ import errno
import os
class BvfsFile(File, BvfsCommon):
- def __init__(self, root, file, bvfspath):
+ def __init__(self, root, file, job, bvfspath):
super(BvfsFile, self).__init__(root, file['name'], content = None)
self.file = file
+ self.job = job
self.bvfspath = bvfspath
- self.id = self.get_id(file, bvfspath)
+ self.id = self.get_id(file, job, bvfspath)
BvfsCommon.init(self, self.root, self.file['jobid'], self.bvfspath, self.file['name'], self.file['stat'])
@classmethod
- def get_id(cls, file, bvfspath):
+ def get_id(cls, file, job, bvfspath):
return str(file['fileid'])
# Filesystem methods