From: Marc Fiuczynski <mef@cs.princeton.edu>
Date: Tue, 21 Jul 2009 18:50:24 +0000 (+0000)
Subject: cleanup: use os.path.join
X-Git-Tag: NodeManager-1.8-8~4
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=31d147a70d18ae73e60d427a05aaef6ef93ad3e0;p=nodemanager.git

cleanup: use os.path.join
---

diff --git a/plugins/specialaccounts.py b/plugins/specialaccounts.py
index a6c07b0..23bd4ae 100644
--- a/plugins/specialaccounts.py
+++ b/plugins/specialaccounts.py
@@ -34,9 +34,9 @@ def GetSlivers(plc, data, conf):
         pw_dir = pw_info[5]
 
         # populate account's .ssh/authorized_keys file
-        dot_ssh = 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 = dot_ssh + '/authorized_keys'
+        auth_keys = os.path.join(dot_ssh,'authorized_keys')
 	logger.log("new keys = %s" % auth_keys)
 
         fd, fname = tempfile.mkstemp('','authorized_keys',dot_ssh)