fixed problems with not working out of a fresh install.

This commit is contained in:
mkonecny 2010-12-16 16:36:51 -05:00
parent b53936b350
commit 9bfb6b53b8
5 changed files with 9 additions and 5 deletions

View file

@ -32,7 +32,7 @@ def create_user(username):
if (output[0:3] != "uid"):
# Make the pypo user
print "Creating user "+username
os.system("adduser --system --quiet --group --disabled-login "+username)
os.system("adduser --system --quiet --group --shell /bin/bash "+username)
else:
print "User already exists."