From 306712fdc1a117680db21dec185478a552bc788b Mon Sep 17 00:00:00 2001 From: naomiaro Date: Thu, 5 May 2011 11:58:45 -0400 Subject: [PATCH] CC-1799 : Live Studio Playout from media library (pytagsfs) need to add pypo to www-data group --- python_apps/pytag-fs/install/media-monitor-install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python_apps/pytag-fs/install/media-monitor-install.py b/python_apps/pytag-fs/install/media-monitor-install.py index f0bb2adc0..8f3fb804e 100755 --- a/python_apps/pytag-fs/install/media-monitor-install.py +++ b/python_apps/pytag-fs/install/media-monitor-install.py @@ -45,6 +45,8 @@ def create_user(username): print "User already exists." #add pypo to audio group 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") def copy_dir(src_dir, dest_dir): if (os.path.exists(dest_dir)) and (dest_dir != "/"):