oops, bugfix
[nodemanager.git] / sliver_lxc.py
index 40120c2..db6c6b8 100644 (file)
@@ -127,7 +127,7 @@ pathmunge /bin after
 pathmunge /sbin after
 unset pathmunge
 """
-        with open(dot_profile,'w') as f:
+        with open(pl_profile,'w') as f:
             f.write("export PS1='%s@\H \$ '\n"%(name))
             f.write("%s\n"%ld_preload_msg)
             f.write("export LD_PRELOAD=/etc/planetlab/lib/bind_public.so\n")
@@ -137,7 +137,7 @@ unset pathmunge
         # make sure this file is sourced from both root's and slice's .profile
         enforced_line = "[ -f /etc/planetlab.profile ] && source /etc/planetlab.profile\n"
         for path in [ 'root/.profile', 'home/%s/.profile'%name ]:
-            from_root=os.path,join(containerDir,path)
+            from_root=os.path.join(containerDir,path)
             found=False
             try: 
                 contents=file(from_root).readlnes()