204
204
# In the local file system, where IVLE is actually installed.
205
205
# This directory should contain the "www" and "bin" directories."""))
206
206
config_options.append(ConfigOption("jail_base", "/home/informatics/jails",
207
"""Root directory where the jails (containing user files) are stored
207
"""Location of Directories
208
=======================
209
Root directory where the jails (containing user files) are stored
208
210
(on the local file system):""",
210
212
# In the local file system, where are the student/user file spaces located.
218
220
# In the local file system, where are the per-subject file spaces located.
219
221
# The individual subject directories are expected to be located immediately
220
222
# in subdirectories of this location."""))
221
config_options.append(ConfigOption("problems_base",
222
"/home/informatics/problems",
223
"""Root directory where the problem directories (containing
224
subject-independent problem sheets) are stored (on the local file
223
config_options.append(ConfigOption("exercises_base",
224
"/home/informatics/exercises",
225
"""Root directory where the exercise directories (containing
226
subject-independent exercise sheets) are stored (on the local file
227
# In the local file system, where are the subject-independent problem sheet
229
# In the local file system, where are the subject-independent exercise sheet
228
230
# file spaces located."""))
229
231
config_options.append(ConfigOption("public_host", "public.localhost",
230
232
"""Hostname which will cause the server to go into "public mode",
270
272
(Caution: This password is stored in plaintext in lib/conf/conf.py)""",
272
274
# Database password"""))
275
config_options.append(ConfigOption("auth_modules", "ldap_auth",
276
"""Authentication config
277
=====================
278
Comma-separated list of authentication modules. Only "ldap" is available
281
# Comma-separated list of authentication modules.
282
# These refer to importable Python modules in the www/auth directory.
283
# Modules "ldap" and "guest" are available in the source tree, but
284
# other modules may be plugged in to auth against organisation-specific
285
# auth backends."""))
286
config_options.append(ConfigOption("ldap_url", "ldaps://www.example.com",
287
"""(LDAP options are only relevant if "ldap" is included in the list of
289
URL for LDAP authentication server:""",
291
# URL for LDAP authentication server"""))
292
config_options.append(ConfigOption("ldap_format_string",
293
"uid=%s,ou=users,o=example",
294
"""Format string for LDAP auth request:
295
(Must contain a single "%s" for the user's login name)""",
297
# Format string for LDAP auth request
298
# (Must contain a single "%s" for the user's login name)"""))
299
config_options.append(ConfigOption("svn_addr", "http://svn.localhost/",
302
The base url for accessing subversion repositories:""",
304
# The base url for accessing subversion repositories."""))
273
305
config_options.append(ConfigOption("svn_conf", "/opt/ivle/svn/svn.conf",
274
306
"""The location of the subversion configuration file used by apache
275
307
to host the user repositories:""",
293
325
# The location of the password file used to authenticate local users
294
326
# of the subversion repository."""))
295
327
config_options.append(ConfigOption("usrmgt_host", "localhost",
296
"""The hostname where the usrmgt-server runs:""",
328
"""User Management Server config
329
============================
330
The hostname where the usrmgt-server runs:""",
298
332
# The hostname where the usrmgt-server runs."""))
299
333
config_options.append(ConfigOption("usrmgt_port", "2178",
458
492
Copy subjects/ to subjects directory (unless --nosubjects specified).
460
494
--nojail Do not copy the jail.
461
--nosubjects Do not copy the subjects and problems directories.
495
--nosubjects Do not copy the subjects and exercises directories.
462
496
--dry | -n Print out the actions but don't do anything."""
463
497
elif operation == 'updatejails':
464
498
print """sudo python setup.py updatejails [--dry|-n]
477
511
list_www = build_list_py_files('www')
478
512
list_lib = build_list_py_files('lib')
479
513
list_subjects = build_list_py_files('subjects', no_top_level=True)
480
list_problems = build_list_py_files('problems', no_top_level=True)
514
list_exercises = build_list_py_files('exercises', no_top_level=True)
482
516
"scripts/python-console",
483
517
"scripts/fileservice",
519
553
list_subjects = """)
520
554
writelist_pretty(file, list_subjects)
522
# List of all installable files in problems directory.
556
# List of all installable files in exercises directory.
523
557
# This is to install sample exercise material.
525
writelist_pretty(file, list_problems)
558
list_exercises = """)
559
writelist_pretty(file, list_exercises)
528
562
except IOError, (errno, strerror):
840
874
# chown trampoline to root and set setuid bit
841
875
action_chown_setuid(tramppath, dry)
877
# Create a scripts directory to put the usrmgt-server in.
878
action_mkdir(os.path.join(ivle_install_dir, 'scripts'), dry)
879
usrmgtpath = os.path.join(ivle_install_dir, 'scripts/usrmgt-server')
880
action_copyfile('scripts/usrmgt-server', usrmgtpath, dry)
881
action_chmod_x(usrmgtpath, dry)
843
883
# Copy the www and lib directories using the list
844
884
action_copylist(install_list.list_www, ivle_install_dir, dry)
845
885
action_copylist(install_list.list_lib, ivle_install_dir, dry)
887
# Copy the php directory
888
action_copytree('www/php/phpBB3',os.path.join(ivle_install_dir,'www/php/phpBB3'),
848
892
# Copy the local jail directory built by the build action
850
894
# for all the students' jails).
851
895
action_copytree('jail', os.path.join(jail_base, 'template'), dry)
852
896
if not nosubjects:
853
# Copy the subjects and problems directories across
897
# Copy the subjects and exercises directories across
854
898
action_copylist(install_list.list_subjects, subjects_base, dry,
855
899
srcdir="./subjects")
856
action_copylist(install_list.list_problems, problems_base, dry,
900
action_copylist(install_list.list_exercises, exercises_base, dry,
901
srcdir="./exercises")
859
903
# Append IVLE path to ivle.pth in python site packages
860
904
# (Unless it's already there)
984
1028
directories as necessary.
986
1030
See shutil.copytree."""
1031
# Allow copying over itself
1032
if (os.path.normpath(os.path.join(os.getcwd(),src)) ==
1033
os.path.normpath(os.path.join(os.getcwd(),dst))):
987
1035
action_remove(dst, dry)
988
1036
print "cp -r", src, dst