spaces after comma
[nodemanager.git] / plugins / specialaccounts.py
index 2cbda58..718d283 100644 (file)
@@ -28,7 +28,7 @@ def start():
 
 def GetSlivers(data, conf = None, plc = None):
     if 'accounts' not in data:
-        logger.log_missing_data("specialaccounts.GetSlivers",'accounts')
+        logger.log_missing_data("specialaccounts.GetSlivers", 'accounts')
         return
 
     for account in data['accounts']:
@@ -44,21 +44,21 @@ def GetSlivers(data, conf = None, plc = None):
         pw_dir = pw_info[5]
 
         # populate account's .ssh/authorized_keys file
-        dot_ssh = os.path.join(pw_dir,'.ssh')
+        dot_ssh = os.path.join(pw_dir, '.ssh')
         if not os.access(dot_ssh, os.F_OK): os.mkdir(dot_ssh)
-        auth_keys = os.path.join(dot_ssh,'authorized_keys')
+        auth_keys = os.path.join(dot_ssh, 'authorized_keys')
 
         # catenate all keys in string, add newlines just in case (looks like keys already have this, but)
         auth_keys_contents = '\n'.join(new_keys)+'\n'
 
-        changes = tools.replace_file_with_string(auth_keys,auth_keys_contents)
+        changes = tools.replace_file_with_string(auth_keys, auth_keys_contents)
         if changes:
             logger.log("specialaccounts: keys file changed: %s" % auth_keys)
 
         # always set permissions properly
         os.chmod(dot_ssh, 0700)
-        os.chown(dot_ssh, uid,gid)
+        os.chown(dot_ssh, uid, gid)
         os.chmod(auth_keys, 0600)
-        os.chown(auth_keys, uid,gid)
+        os.chown(auth_keys, uid, gid)
 
         logger.log('specialaccounts: installed ssh keys for %s' % name)