1092.1.2
by William Grant
ivle-buildjail: Actually add. |
1 |
#!/usr/bin/python
|
2 |
# IVLE - Informatics Virtual Learning Environment
|
|
3 |
# Copyright (C) 2009 The University of Melbourne
|
|
4 |
#
|
|
5 |
# This program is free software; you can redistribute it and/or modify
|
|
6 |
# it under the terms of the GNU General Public License as published by
|
|
7 |
# the Free Software Foundation; either version 2 of the License, or
|
|
8 |
# (at your option) any later version.
|
|
9 |
#
|
|
10 |
# This program is distributed in the hope that it will be useful,
|
|
11 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
# GNU General Public License for more details.
|
|
14 |
#
|
|
15 |
# You should have received a copy of the GNU General Public License
|
|
16 |
# along with this program; if not, write to the Free Software
|
|
17 |
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
18 |
||
19 |
import optparse |
|
20 |
import os |
|
21 |
import sys |
|
22 |
import shutil |
|
23 |
||
24 |
import ivle.conf |
|
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
25 |
import ivle.config |
26 |
import ivle.jailbuilder.debian |
|
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
27 |
|
28 |
usage = """usage: %prog [options] |
|
29 |
(requires root)
|
|
30 |
Builds or updates the base IVLE jail."""
|
|
31 |
||
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
32 |
conf = ivle.config.Config() |
33 |
build_path = ivle.conf.jail_system_build |
|
34 |
||
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
35 |
# Parse arguments
|
36 |
parser = optparse.OptionParser(usage) |
|
37 |
parser.add_option("-r", "--recreate", |
|
38 |
action="store_true", dest="recreate", |
|
39 |
help='''Completely recreate the jail - don't just update its IVLE code. |
|
40 |
Be warned, this may download hundreds of megabytes!''') |
|
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
41 |
parser.add_option("-u", "--upgrade", |
42 |
action="store_true", dest="upgrade", |
|
43 |
help='''Apply any package updates in the jail.''') |
|
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
44 |
parser.add_option("-m", "--mirror", |
45 |
action="store", dest="apt_mirror", |
|
1123
by William Grant
ivle-buildjail now replaces sources.list and installs extra packages. |
46 |
help="Sets the apt mirror.", default="http://archive.ubuntu.com/ubuntu") |
1191
by Matt Giuca
ivle-buildjail: Added option --python-site-packages, which allows the user to |
47 |
parser.add_option("--python-site-packages", |
48 |
action="store", dest="python_site_packages", |
|
49 |
help="Path to Python site packages directory inside the jail.", |
|
50 |
default=None) |
|
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
51 |
(options, args) = parser.parse_args(sys.argv) |
52 |
||
53 |
if os.geteuid() != 0: |
|
54 |
print >> sys.stderr, "Must be root to run buildjail." |
|
55 |
sys.exit(1) |
|
56 |
||
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
57 |
if not options.recreate and not os.path.exists(build_path): |
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
58 |
print >> sys.stderr, "No jail exists -- please rerun with -r." |
59 |
sys.exit(1) |
|
60 |
||
1191
by Matt Giuca
ivle-buildjail: Added option --python-site-packages, which allows the user to |
61 |
if (options.python_site_packages is not None and |
62 |
options.python_site_packages[:1] not in (os.path.sep, os.path.altsep)): |
|
63 |
print >> sys.stderr, "python-site-packages must be an absolute path." |
|
64 |
sys.exit(1) |
|
65 |
||
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
66 |
if options.recreate: |
1123
by William Grant
ivle-buildjail now replaces sources.list and installs extra packages. |
67 |
options.upgrade = True |
68 |
||
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
69 |
# Create the jail and its subdirectories
|
70 |
# Note: Other subdirs will be made by copying files
|
|
71 |
if options.apt_mirror is not None: |
|
72 |
os.environ['MIRROR'] = options.apt_mirror |
|
73 |
||
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
74 |
os.system('rm -rf --one-file-system ' + build_path) |
1092.1.22
by William Grant
Allow configuration of the suite used for debootstrapping a new jail. |
75 |
ivle.jailbuilder.debian.debootstrap_create_jail(conf['jail']['suite'], |
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
76 |
build_path, mirror=options.apt_mirror) |
77 |
||
1123
by William Grant
ivle-buildjail now replaces sources.list and installs extra packages. |
78 |
ivle.jailbuilder.debian.apt_update_cache(build_path) |
79 |
ivle.jailbuilder.debian.apt_install(build_path, |
|
80 |
['python2.5', 'python-cjson', 'python-svn']) |
|
81 |
||
82 |
ivle.jailbuilder.debian.apt_clean(build_path) |
|
83 |
||
84 |
if options.upgrade: |
|
85 |
# Run apt-get update, apt-get upgrade and apt-get clean.
|
|
86 |
ivle.jailbuilder.debian.mangle_sources_list(build_path, clobber=True) |
|
87 |
ivle.jailbuilder.debian.mangle_sources_list(build_path, lines=[ |
|
88 |
'deb %s %s%s %s' % (options.apt_mirror, conf['jail']['suite'], |
|
89 |
pocket, ' '.join(['main', 'universe'])) |
|
90 |
for pocket in ('', '-updates', '-security')]) |
|
91 |
||
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
92 |
# Add any extra site apt sources.
|
93 |
if conf['jail']['extra_sources']: |
|
94 |
ivle.jailbuilder.debian.mangle_sources_list(build_path, |
|
95 |
conf['jail']['extra_sources']) |
|
96 |
||
97 |
# Add any extra site apt keys.
|
|
98 |
if conf['jail']['extra_keys']: |
|
99 |
ivle.jailbuilder.debian.apt_add_key(build_path, |
|
100 |
conf['jail']['extra_keys']) |
|
101 |
||
102 |
ivle.jailbuilder.debian.apt_update_cache(build_path) |
|
1123
by William Grant
ivle-buildjail now replaces sources.list and installs extra packages. |
103 |
ivle.jailbuilder.debian.apt_upgrade(build_path) |
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
104 |
|
105 |
# Install any extra site packages.
|
|
106 |
if conf['jail']['extra_packages']: |
|
107 |
ivle.jailbuilder.debian.apt_install(build_path, |
|
108 |
conf['jail']['extra_packages']) |
|
109 |
||
110 |
ivle.jailbuilder.debian.apt_clean(build_path) |
|
111 |
||
1099.1.179
by William Grant
ivle-buildjail now only copies the system's IVLE files if jail/devmode |
112 |
if conf['jail']['devmode']: |
113 |
# Copy all console and operating system files into the jail
|
|
114 |
services_path = os.path.join(ivle.conf.share_path, 'services') |
|
115 |
jail_services_path = os.path.join(build_path, services_path[1:]) |
|
116 |
if os.path.exists(jail_services_path): |
|
117 |
shutil.rmtree(jail_services_path) |
|
118 |
shutil.copytree(services_path, jail_services_path) |
|
119 |
||
120 |
# Also copy the IVLE lib directory into the jail
|
|
121 |
# This is necessary for running certain services
|
|
1191
by Matt Giuca
ivle-buildjail: Added option --python-site-packages, which allows the user to |
122 |
|
123 |
# ivle_site_packages is the IVLE install location outside the jail
|
|
124 |
ivle_site_packages = os.path.dirname(ivle.__file__) |
|
125 |
||
126 |
if options.python_site_packages is None: |
|
127 |
# Get the site packages from the IVLE install location *OUTSIDE* the
|
|
128 |
# jail. Warning! This only works if you have the same Python site
|
|
129 |
# packages directory inside and out (ie. same Python version).
|
|
130 |
# If not, you should use --python-site-packages.
|
|
131 |
jail_site_packages = os.path.join(build_path, ivle_site_packages[1:]) |
|
132 |
else: |
|
133 |
# User-specified site packages
|
|
134 |
jail_site_packages = os.path.join(build_path, |
|
135 |
options.python_site_packages[1:], "ivle") |
|
1099.1.179
by William Grant
ivle-buildjail now only copies the system's IVLE files if jail/devmode |
136 |
if os.path.exists(jail_site_packages): |
137 |
shutil.rmtree(jail_site_packages) |
|
138 |
shutil.copytree(ivle_site_packages, jail_site_packages) |
|
139 |
||
1092.1.5
by William Grant
ivle-buildjail: Remove some too-new rsync options. |
140 |
if os.spawnvp(os.P_WAIT, 'rsync', ['rsync', '-a', '--delete', |
1092.1.16
by William Grant
Reimplement setup/buildjail.sh in Python. This means that sites can configure |
141 |
build_path + '/', ivle.conf.jail_system]) != 0: |
1092.1.2
by William Grant
ivle-buildjail: Actually add. |
142 |
print >> sys.stderr, "Jail copying failed." |
143 |
sys.exit(1) |
|
144 |