- Timestamp:
 - Jul 24, 2009, 11:48:06 PM (16 years ago)
 - Location:
 - baculafs/trunk
 - Files:
 - 
      
- 1 added
 - 1 edited
 
- 
          
  README.txt (added)
 - 
          
  baculafs.py (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
baculafs/trunk/baculafs.py
r778 r779 84 84 ############### 85 85 86 hello_world_path = "/helloworld"87 hello_world = "Hello World!"88 89 86 class BaculaFS(fuse.Fuse): 90 87 … … 163 160 elif file['type'] == self.TYPE_DIR: 164 161 st.st_mode = stat.S_IFDIR | 0755 165 st.st_nlink = 2 162 if 'dirs' in file: 163 st.st_nlink = len(file['dirs']) 164 else: 165 st.st_nlink = 2 166 166 else: 167 167 return -errno.ENOENT  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  