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

« back to all changes in this revision

Viewing changes to setup/build.py

  • Committer: matt.giuca
  • Date: 2009-01-12 00:33:53 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1072
Renamed scripts to services.
Updated all references (we hope). :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        action_runprog('./bin/buildjail.sh', [], dry)
112
112
 
113
113
    # Copy all console and operating system files into the jail
114
 
    action_copylist(install_list.list_scripts, 'jail/opt/ivle', dry)
 
114
    action_copylist(install_list.list_services, 'jail/opt/ivle', dry)
115
115
    
116
116
    # Chmod the python console
117
 
    action_chmod_x('jail/opt/ivle/scripts/python-console', dry)
118
 
    action_chmod_x('jail/opt/ivle/scripts/fileservice', dry)
119
 
    action_chmod_x('jail/opt/ivle/scripts/serveservice', dry)
 
117
    action_chmod_x('jail/opt/ivle/services/python-console', dry)
 
118
    action_chmod_x('jail/opt/ivle/services/fileservice', dry)
 
119
    action_chmod_x('jail/opt/ivle/services/serveservice', dry)
120
120
    
121
121
    # Also copy the IVLE lib directory into the jail
122
 
    # This is necessary for running certain scripts
 
122
    # This is necessary for running certain services
123
123
    action_copylist(install_list.list_lib, 'jail/opt/ivle', dry)
124
124
    # IMPORTANT: The file jail/opt/ivle/lib/conf/conf.py contains details
125
125
    # which could compromise security if left in the jail (such as the DB
132
132
    # Compile .py files into .pyc or .pyo files
133
133
    compileall.compile_dir('www', quiet=True)
134
134
    compileall.compile_dir('lib', quiet=True)
135
 
    compileall.compile_dir('scripts', quiet=True)
 
135
    compileall.compile_dir('services', quiet=True)
136
136
    compileall.compile_dir('jail/opt/ivle/lib', quiet=True)
137
137
 
138
138
    # Set up ivle.pth inside the jail