Consistency: calamares_main ==> run; global_storage => globalStorage

This commit is contained in:
Teo Mrnjavac 2014-07-25 16:41:21 +02:00
parent fb6d80ccb6
commit beafcd9cc4
7 changed files with 31 additions and 29 deletions

View file

@ -68,9 +68,9 @@ def installGrub( rootMountPoint, bootLoader ):
chroot_call( rootMountPoint, [ "grub-mkconfig", "-o", "/boot/grub/grub.cfg" ] )
def calamares_main():
rootMountPoint = libcalamares.global_storage.value( "rootMountPoint" )
bootLoader = libcalamares.global_storage.value( "bootLoader" )
def run():
rootMountPoint = libcalamares.globalStorage.value( "rootMountPoint" )
bootLoader = libcalamares.globalStorage.value( "bootLoader" )
extraMounts = libcalamares.job.configuration[ "extraMounts" ]
mountPartitions( rootMountPoint, extraMounts )
try: