From 31d147a70d18ae73e60d427a05aaef6ef93ad3e0 Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Tue, 21 Jul 2009 18:50:24 +0000 Subject: [PATCH] cleanup: use os.path.join --- plugins/specialaccounts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.43.0