Add two env vars to set nick name and user dir

This commit is contained in:
Marco Pesenti Gritti
2006-05-22 22:14:22 -04:00
parent d213eada76
commit a32007ec7a
2 changed files with 14 additions and 3 deletions
+4 -2
View File
@@ -82,8 +82,10 @@ class Owner(Buddy):
"""Class representing the owner of this machine/instance."""
def __init__(self, group):
self._group = group
nick = pwd.getpwuid(os.getuid())[0]
nick = env.get_nick_name()
if not nick:
nick = pwd.getpwuid(os.getuid())[0]
if not nick or not len(nick):
nick = "n00b"