X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=accounts.py;fp=accounts.py;h=ccc1fda0ee6005a6d26eecc6e957606141ce6507;hb=359fe09b9c56bb24fee2d828d2baddfaec7f9c05;hp=2f3bb329f6c9095246e0a02a8b0e2526c3ef854c;hpb=f7408f5cc455e960140f8ea9996375aaf7a359ae;p=nodemanager.git diff --git a/accounts.py b/accounts.py index 2f3bb32..ccc1fda 100644 --- a/accounts.py +++ b/accounts.py @@ -190,3 +190,24 @@ If still valid, check if running and configure/start if not.""" try: shell = pwd.getpwnam(self.name)[6] except KeyError: return None return shell_acct_class[shell] + + # bind mount root side dir to sliver side + # needs to be done before sliver starts, in the vserver case at least + def expose_ssh_dir (self): + try: + root_ssh="/home/%s/.ssh"%self.name + sliver_ssh="/vservers/%s/home/%s/.ssh"%(self.name,self.name) + # any of both might not exist yet + for path in [root_ssh,sliver_ssh]: + if not os.path.exists (path): + os.mkdir(path) + if not os.path.isdir (path): + raise Exception + mounts=file('/proc/mounts').read() + if mounts.find(sliver_ssh)<0: + # xxx perform mount + subprocess.call("mount --bind -o ro %s %s"%(root_ssh,sliver_ssh),shell=True) + logger.log("expose_ssh_dir: %s mounted into slice %s"%(root_ssh,self.name)) + except: + logger.log_exc("expose_ssh_dir with slice %s failed"%self.name) +