summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rwxr-xr-xinstall3
1 files changed, 3 insertions, 0 deletions
diff --git a/install b/install
index 2e392e8..d76226b 100755
--- a/install
+++ b/install
@@ -837,6 +837,9 @@ def mount_in_bootenv():
call(['mount', '-F' , 'fd', '-', rootdir + '/dev/fd'], stdout=PIPE, stderr=PIPE)
call(['mount', '-F' , 'proc', '-', rootdir + '/proc'], stdout=PIPE, stderr=PIPE)
+ # /home is rpool/home, we need this to create a regular user:
+ call(['mount', '-F' , 'lofs', '/mnt/'+rpool+'/home', rootdir + '/home'], stdout=PIPE, stderr=PIPE)
+
def set_root_password():
entry1 = Entry(width=30, password=1, returnExit=0)
entry2 = Entry(width=30, password=1, returnExit=1)