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

« back to all changes in this revision

Viewing changes to ivle/conf/conf.py

  • Committer: Matt Giuca
  • Date: 2009-04-22 05:14:58 UTC
  • Revision ID: matt.giuca@gmail.com-20090422051458-vh65hoaa3a54knxq
Stopped clobbering conf.py within the jail, using a proper ivle.conf instead.
Now works with Python 2.6 (and can have another version, possible 2.6, inside
the jail).

ivle/config/ivle-spec.conf: Added user_info section with in-jail variables.
ivle/makeuser: Writes a conf file (ivle.conf) instead of conf.py.
ivle/conf/conf.py: Added emulation layer bindings for the in-jail variables.
ivle-buildjail: No longer REMOVES the conf.py file (since it's just a normal
    source file now).

(--author Will)

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    'usrmgt_host': 'usrmgt/host',
59
59
    'usrmgt_port': 'usrmgt/port',
60
60
    'usrmgt_magic': 'usrmgt/magic',
 
61
 
 
62
    # These two are only relevant inside the jail.
 
63
    'login': 'user_info/login',
 
64
    'svn_pass': 'user_info/svn_pass',
61
65
}
62
66
 
63
67
for legacyopt, newopt_path in CONFIG_OPTIONS.iteritems():
100
104
# In the local file system, where the student/user jails will be mounted.
101
105
# Only a single copy of the jail's system components will be stored here -
102
106
# all user jails will be virtually mounted here.
 
107
# XXX: Some jail code calls ivle.studpath.url_to_{local,jailpaths}, both
 
108
#      of which use jail_base. Note that they don't use the bits of the
 
109
#      return value that depend on jail_base, so it can be any string inside
 
110
#      the jail. The value computed here may be meaningless inside the jail,
 
111
#      but that's OK for now.
103
112
jail_base = os.path.join(data_path, 'jailmounts')
104
113
 
105
114
# In the local file system, where are the student/user file spaces located.