CC-2602 : Live show record silence

adding pypo to groups pulse and pulse-access
This commit is contained in:
Naomi Aro 2011-07-27 13:00:07 +02:00
parent 8b9cfd7cfa
commit 1ef785a0fd
1 changed files with 8 additions and 4 deletions

View File

@ -24,6 +24,10 @@ def create_user(username):
os.system("adduser " + username + " audio 1>/dev/null 2>&1")
#add pypo to www-data group
os.system("adduser " + username + " www-data 1>/dev/null 2>&1")
#add pypo to pulse group
os.system("adduser " + username + " pulse 1>/dev/null 2>&1")
#add pypo to pulse-access group
os.system("adduser " + username + " pulse-access 1>/dev/null 2>&1")
if __name__ == "__main__":