From 3f4a1e15d7c3f740e85939d8f68751eb9f7cb62b Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Wed, 29 May 2013 19:57:54 +0200 Subject: [PATCH] Properly configure home directory for pyLSA user --- installer/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/install.py b/installer/install.py index 2859029..2a01913 100644 --- a/installer/install.py +++ b/installer/install.py @@ -86,7 +86,7 @@ def add_user(uname): grp.seek(0, 2) setuplib.create_directory("/home/%s" % uname, True, new_uid, new_gid, "u+rwx g+rx") - passwd.write("%s::%d:%d::/home/cvm:/bin/false\n" % (uname, new_uid, new_gid)) + passwd.write("%s::%d:%d::/home/pylsa:/bin/false\n" % (uname, new_uid, new_gid)) grp.write("%s::%d:\n" % (uname, new_gid)) # We're done with /etc/passwd and /etc/group