get rid of pypo permissions since it now runs as root
This commit is contained in:
parent
5e9302d912
commit
38dbc28e1c
|
@ -83,8 +83,7 @@ class MediaMonitorCommon:
|
||||||
# the function only changes the permission if its not readable by www-data
|
# the function only changes the permission if its not readable by www-data
|
||||||
def is_readable(self, item, is_dir):
|
def is_readable(self, item, is_dir):
|
||||||
try:
|
try:
|
||||||
return self.is_user_readable(item, 'www-data', 'www-data') \
|
return self.is_user_readable(item, 'www-data', 'www-data')
|
||||||
and self.is_user_readable(item, 'pypo', 'pypo')
|
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
self.logger.warn(u"Failed to check owner/group/permissions for %s", item)
|
self.logger.warn(u"Failed to check owner/group/permissions for %s", item)
|
||||||
return False
|
return False
|
||||||
|
|
|
@ -54,14 +54,10 @@ try:
|
||||||
|
|
||||||
#create log dir
|
#create log dir
|
||||||
create_dir(config['log_dir'])
|
create_dir(config['log_dir'])
|
||||||
os.system("chown -R pypo:pypo "+config["log_dir"])
|
|
||||||
|
|
||||||
#copy python files
|
#copy python files
|
||||||
copy_dir("%s/.."%current_script_dir, config["bin_dir"])
|
copy_dir("%s/.."%current_script_dir, config["bin_dir"])
|
||||||
|
|
||||||
#set executable permissions on python files
|
|
||||||
os.system("chown -R pypo:pypo "+config["bin_dir"])
|
|
||||||
|
|
||||||
#copy init.d script
|
#copy init.d script
|
||||||
shutil.copy(config["bin_dir"]+"/airtime-media-monitor-init-d", "/etc/init.d/airtime-media-monitor")
|
shutil.copy(config["bin_dir"]+"/airtime-media-monitor-init-d", "/etc/init.d/airtime-media-monitor")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue