summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-system/add_storage.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-08-28 03:33:01 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-08-28 03:33:01 (GMT)
commit603193072ddaebbdc290d69ff0a187dc4a803d78 (patch)
tree367318823864680c18535f0e0407287018ddbf91 /abs/core/LinHES-system/add_storage.py
parent473975ef60ffa95ecdf3a61e0bbff9698070d88c (diff)
downloadlinhes_pkgbuild-603193072ddaebbdc290d69ff0a187dc4a803d78.zip
linhes_pkgbuild-603193072ddaebbdc290d69ff0a187dc4a803d78.tar.gz
linhes_pkgbuild-603193072ddaebbdc290d69ff0a187dc4a803d78.tar.bz2
LinHES-system: add_storage.py change the double mount to a bind mount for /myth
Diffstat (limited to 'abs/core/LinHES-system/add_storage.py')
-rw-r--r--abs/core/LinHES-system/add_storage.py25
1 files changed, 15 insertions, 10 deletions
diff --git a/abs/core/LinHES-system/add_storage.py b/abs/core/LinHES-system/add_storage.py
index db0d9af..626640e 100644
--- a/abs/core/LinHES-system/add_storage.py
+++ b/abs/core/LinHES-system/add_storage.py
@@ -222,24 +222,29 @@ class disk_device:
return options,i
- def add_fstab(self):
+ def add_fstab(self,bind=False):
new_fstab_list=['UUID=', 'mount_point', 'auto', 'defaults', '0', '1']
fstab=self.read_fstab()
+
#determine mount_path
self.new_mount_point="%s/%s_%s" %(self.top_mount_dir,self.model.replace(' ',''),self.serial_number.replace(' ',''))
+ if bind:
+ new_fstab_list=["/myth" , self.new_mount_point , "none" , "rw,bind", '0', '0']
+ else:
#determine options
- new_options = self.find_options_type(fstab)[0]
- #find blkid
- #self.block_partition="%s1" %self.block_path
- uuid=self.find_uuid(self.block_partition)
+ new_options = self.find_options_type(fstab)[0]
+
+ #find blkid
+ #self.block_partition="%s1" %self.block_path
+ uuid=self.find_uuid(self.block_partition)
- #construct new line
- new_fstab_list[0]="UUID=%s" %uuid
- new_fstab_list[1]=self.new_mount_point
- new_fstab_list[3]=new_options
+ #construct new line
+ new_fstab_list[0]="UUID=%s" %uuid
+ new_fstab_list[1]=self.new_mount_point
+ new_fstab_list[3]=new_options
new_fstab_line='\t'.join(new_fstab_list)
new_fstab_line="%s\n" %new_fstab_line
@@ -545,7 +550,7 @@ def myth_main():
print " Drive: %s" %(i.get_name())
i.set_mmount(True)
i.set_partition("3")
- i.add_fstab()
+ i.add_fstab(True)
i.mount_disk()
i.write_config()
i.add_sg(DB,host,SG_MAP,'99')