make_project: Remove symlinks for the download/stats/user_profiles directories off of html/user. That is handled via the apache configuration now.

This commit is contained in:
Rom Walton 2015-11-16 21:14:16 -05:00
parent 61f8d3dddc
commit 815b708181
1 changed files with 0 additions and 9 deletions

View File

@ -305,12 +305,6 @@ def install_boinc_files(dest_dir, install_web_files, install_server_files):
create_project_dirs(dest_dir);
# make a symbolic link from html/user/user_profile to html/user_profile
try:
my_symlink(dir('html/user_profile'), dir('html/user/user_profile'));
except:
pass
# copy html/ops files in all cases.
# The critical one is db_update.php,
# which is needed even for a server_only upgrade
@ -572,9 +566,6 @@ class Project:
install(srcdir('test/uc_result'), self.dir('templates/uc_result'))
install(srcdir('test/uc_wu_nodelete'), self.dir('templates/uc_wu'))
my_symlink(self.config.config.download_dir, self.dir('html', 'user', 'download'))
my_symlink('../stats', self.dir('html/user/stats'))
f = open(self.dir('html/user', 'schedulers.txt'), 'w')
print >>f, "<!-- <scheduler>" + self.scheduler_url.strip() + "</scheduler> -->"
print >>f, "<link rel=\"boinc_scheduler\" href=\"" + self.scheduler_url.strip()+ "\">"