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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: drtomc
  • Date: 2008-01-28 23:37:40 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:316
setup.py - name the configuration command "config" to bring it into line with
other setup.py scripts.
users.sql - tweak.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
# cutting a distribution, and the listfile it generates should be included in
32
32
# the distribution, avoiding the administrator having to run it.
33
33
 
34
 
# setup.py conf [args]
 
34
# setup.py config [args]
35
35
# Configures IVLE with machine-specific details, most notably, various paths.
36
36
# Either prompts the administrator for these details or accepts them as
37
37
# command-line args.
214
214
    try:
215
215
        oper_func = {
216
216
            'help' : help,
217
 
            'conf' : conf,
 
217
            'config' : conf,
218
218
            'build' : build,
219
219
            'listmake' : listmake,
220
220
            'install' : install,
235
235
Operation (and args) can be:
236
236
    help [operation]
237
237
    listmake (developer use only)
238
 
    conf [args]
 
238
    config [args]
239
239
    build
240
240
    install [--nojail] [--nosubjects] [-n|--dry]
241
241
"""
256
256
be copied upon installation. This should be run by the developer before
257
257
cutting a distribution, and the listfile it generates should be included in
258
258
the distribution, avoiding the administrator having to run it."""
259
 
    elif operation == 'conf':
260
 
        print """python setup.py conf [args]
 
259
    elif operation == 'config':
 
260
        print """python setup.py config [args]
261
261
Configures IVLE with machine-specific details, most notably, various paths.
262
262
Either prompts the administrator for these details or accepts them as
263
263
command-line args. Will be interactive only if there are no arguments given.