X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=accounts.py;h=12084c266c1863802dc007bd31d2b7849f99161e;hb=1218b7d0687156283b701f0cb15c920cf170df09;hp=da880492fe98bc9cc188babf25cfbb4274a47052;hpb=2bea6afe154924341f57f7b8633b9ca87b53b82f;p=nodemanager.git diff --git a/accounts.py b/accounts.py index da88049..12084c2 100644 --- a/accounts.py +++ b/accounts.py @@ -29,6 +29,11 @@ import logger import tools +# When this variable is true, start after any ensure_created +startingup = False +# Cumulative delay for starts when startingup is true +cumstartdelay = 0 + # shell path -> account class association shell_acct_class = {} # account type -> account class association @@ -44,9 +49,12 @@ def register_class(acct_class): name_worker_lock = threading.Lock() name_worker = {} +def allpwents(): + return [pw_ent for pw_ent in pwd.getpwall() if pw_ent[6] in shell_acct_class] + def all(): """Return the names of all accounts on the system with recognized shells.""" - return [pw_ent[0] for pw_ent in pwd.getpwall() if pw_ent[6] in shell_acct_class] + return [pw_ent[0] for pw_ent in allpwents()] def get(name): """Return the worker object for a particular username. If no such object exists, create it first.""" @@ -61,10 +69,11 @@ class Account: def __init__(self, rec): self.name = rec['name'] self.keys = '' + self.initscriptchanged = False self.configure(rec) @staticmethod - def create(name): abstract + def create(name, vref = None): abstract @staticmethod def destroy(name): abstract @@ -76,6 +85,7 @@ class Account: dot_ssh = '/home/%s/.ssh' % self.name def do_installation(): if not os.access(dot_ssh, os.F_OK): os.mkdir(dot_ssh) + os.chmod(dot_ssh, 0700) tools.write_file(dot_ssh + '/authorized_keys', lambda f: f.write(new_keys)) logger.log('%s: installing ssh keys' % self.name) tools.fork_as(self.name, do_installation) @@ -108,11 +118,15 @@ class Worker: if next_class != curr_class: self._destroy(curr_class) self._create_sem.acquire() - try: next_class.create(self.name) + try: next_class.create(self.name, rec['vref']) finally: self._create_sem.release() if not isinstance(self._acct, next_class): self._acct = next_class(rec) else: self._acct.configure(rec) - if next_class != curr_class: self._acct.start() + if startingup: + self._acct.start(delay=cumstartdelay) + cumstartdelay += 2 + elif next_class != curr_class or self._acct.initscriptchanged: + self._acct.start() def ensure_destroyed(self): self._q.put((self._ensure_destroyed,)) def _ensure_destroyed(self): self._destroy(self._get_class())