From: Thierry Parmentelat Date: Tue, 25 Jun 2013 08:48:03 +0000 (+0200) Subject: oops, bugfix X-Git-Tag: nodemanager-5.2-4~10 X-Git-Url: http://git.onelab.eu/?p=nodemanager.git;a=commitdiff_plain;h=ae83590e29098fe6e8425f67d830e832fee460e1 oops, bugfix --- diff --git a/sliver_lxc.py b/sliver_lxc.py index 375cb0b..db6c6b8 100644 --- a/sliver_lxc.py +++ b/sliver_lxc.py @@ -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()