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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David Coles
  • Date: 2009-08-06 04:04:37 UTC
  • Revision ID: coles.david@gmail.com-20090806040437-a8k5jhkkf2ixud5a
Add a rather lenient RLIMIT_NPROC that will prevent simple fork bombs (hopefully accidental...) from taking down a server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# This is a command-line application, for use by the administrator.
24
24
# This program is a frontend for the modules in the setup packages that 
25
 
# configure, build and install IVLE in three separate steps.
 
25
# build and install IVLE in separate steps.
26
26
# It is called with at least one argument, which specifies which operation to
27
27
# take.
28
28
 
29
29
import sys
30
 
import setup.configure
31
30
import setup.build
32
31
import setup.install
33
 
import setup.listmake
34
 
 
35
32
 
36
33
def main(argv=None):
37
34
    if argv is None:
64
61
        print """Usage: python setup.py operation [options]
65
62
Operation can be:
66
63
    help [operation]
67
 
    listmake (developer use only)
68
 
    config
69
64
    build
70
65
    install
71
66
 
80
75
    try:
81
76
        oper_func = {
82
77
            'help' : help,
83
 
            'config' : setup.configure.configure,
84
78
            'build' : setup.build.build,
85
 
            'listmake' : setup.listmake.listmake,
86
79
            'install' : setup.install.install,
87
 
            #'updatejails' : None,
88
80
        }[operation]
89
81
    except KeyError:
90
82
        print >>sys.stderr, (