~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to setup/install.py

  • Committer: William Grant
  • Date: 2009-02-18 00:31:46 UTC
  • mto: (1092.1.63 setup-stuff)
  • mto: This revision was merged to the branch mainline in revision 1100.
  • Revision ID: grantw@unimelb.edu.au-20090218003146-jictayp2dg05ec1d
Remove phpBB3 installation code and instructions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
    # Copy the www directory (using the list)
118
118
    util.action_copylist(install_list.list_www, share_path, dry)
119
119
 
120
 
    # Set appropriate permissions on the php directory
121
 
    forum_dir = "www/php/phpBB3"
122
 
    forum_path = os.path.join(share_path, forum_dir)
123
 
    print "chown -R www-data:www-data %s" % forum_path
124
 
    if not dry:
125
 
        os.system("chown -R www-data:www-data %s" % forum_path)
126
 
 
127
120
    # Copy the lib directory (using the list)
128
121
    util.action_copylist(install_list.list_ivle_lib, python_site_packages, dry)
129
122