install
author Paul Crowley <paul@lshift.net>
Mon, 09 Nov 2009 13:23:45 +0000
changeset 167 aeeba4d0dd4e
parent 165 3606d60b07e5
permissions -rwxr-xr-x
Ignore files in build directory
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
     1
#!/usr/bin/env python
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
     2
84
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
     3
import sys
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
     4
import shutil
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
     5
import os
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
     6
import pwd
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
     7
import subprocess
87
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
     8
import optparse
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
     9
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    10
oparser = optparse.OptionParser()
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    11
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    12
oparser.add_option("--prefix")
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    13
oparser.add_option("--root")
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    14
oparser.set_defaults(root="", prefix="/usr/local")
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    15
(options, args) = oparser.parse_args()
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    16
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    17
if len(args) > 0:
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    18
    oparser.print_help()
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    19
    sys.exit(-1)
27
ec31ba248edd Installer to set things up automatically
Paul Crowley <paul@ciphergoth.org>
parents:
diff changeset
    20
84
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    21
# This must be run as root, because it must create an hg user.
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    22
# Normally the clean thing to do is let it fail with a permission error
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    23
# if a non-root user tries to run it, but I don't want anyone thinking
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    24
# that they can make it work as non-root by changing install paths.
89
30a8be7ce326 reword comment for clarity
Paul Crowley <paul@lshift.net>
parents: 87
diff changeset
    25
# Patches for doing this more cleanly welcome of course.
84
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    26
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    27
if os.getgid() != 0:
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    28
    print >>sys.stderr, "Install must be run as root user"
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    29
    sys.exit(-1)
964b04126d01 Force install as root and allow path to change.
Paul Crowley <paul@lshift.net>
parents: 80
diff changeset
    30
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    31
def installFiles(d, *sources):
87
535502c18eaa Give install real command line options
Paul Crowley <paul@lshift.net>
parents: 84
diff changeset
    32
    d = options.root + d
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    33
    os.makedirs(d)
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    34
    for f in sources:
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    35
        shutil.copy(f, d)
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    36
92
647c3e61bc95 use share not lib
Paul Crowley <paul@lshift.net>
parents: 91
diff changeset
    37
installFiles(options.prefix + '/share/mercurial-server',
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    38
    'src/hg-ssh',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    39
    'src/refresh-auth')
92
647c3e61bc95 use share not lib
Paul Crowley <paul@lshift.net>
parents: 91
diff changeset
    40
installFiles(options.prefix + '/share/mercurial-server/mercurialserver',
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    41
    'src/mercurialserver/__init__.py',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    42
    'src/mercurialserver/paths.py',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    43
    'src/mercurialserver/changes.py',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    44
    'src/mercurialserver/access.py',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    45
    'src/mercurialserver/servelog.py',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    46
    'src/mercurialserver/refreshauth.py',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    47
    'src/mercurialserver/ruleset.py')
92
647c3e61bc95 use share not lib
Paul Crowley <paul@lshift.net>
parents: 91
diff changeset
    48
installFiles(options.prefix + '/share/mercurial-server/init',
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    49
    'src/init/hginit',
165
3606d60b07e5 Use .mercurial-sever file instead of hardcoding
Paul Crowley <paul@lshift.net>
parents: 164
diff changeset
    50
    'src/init/dot-mercurial-server',
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    51
    'src/init/hgadmin-hgrc')
94
864e1a47234f Install documentation
Paul Crowley <paul@lshift.net>
parents: 93
diff changeset
    52
installFiles(options.prefix + '/share/doc/mercurial-server',
864e1a47234f Install documentation
Paul Crowley <paul@lshift.net>
parents: 93
diff changeset
    53
    'README',
164
32131253c2f1 Start work on fixing install to use html
Paul Crowley <paul@lshift.net>
parents: 96
diff changeset
    54
    'build/html/index.html')
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    55
installFiles('/etc/mercurial-server',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    56
    'src/init/conf/remote-hgrc',
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    57
    'src/init/conf/access.conf')
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    58
installFiles('/etc/mercurial-server/keys/root')
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    59
installFiles('/etc/mercurial-server/keys/users')
27
ec31ba248edd Installer to set things up automatically
Paul Crowley <paul@ciphergoth.org>
parents:
diff changeset
    60
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    61
def becomeFunc(u):
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    62
    p = pwd.getpwnam(u)
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    63
    def become():
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    64
        os.setgid(p.pw_gid)
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    65
        os.setegid(p.pw_gid)
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    66
        os.setuid(p.pw_uid)
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    67
        os.seteuid(p.pw_uid)
165
3606d60b07e5 Use .mercurial-sever file instead of hardcoding
Paul Crowley <paul@lshift.net>
parents: 164
diff changeset
    68
        os.chdir(p.pw_dir)
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    69
    return become
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    70
91
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    71
if options.root == '':
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    72
    try:
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    73
       pwd.getpwnam('hg')
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    74
    except KeyError:
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    75
        subprocess.check_call(
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    76
            "adduser --system --shell /bin/sh --group --disabled-password".split() + 
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    77
            ["--gecos", "Mercurial repositories", "hg"])
96
975fb921c3f3 abolish that one last path
Paul Crowley <paul@lshift.net>
parents: 94
diff changeset
    78
        subprocess.check_call([options.prefix + '/share/mercurial-server/init/hginit',
975fb921c3f3 abolish that one last path
Paul Crowley <paul@lshift.net>
parents: 94
diff changeset
    79
            options.prefix + '/share/mercurial-server'],
91
69dd70e1d844 Don't try to create user if we're installing outside /
Paul Crowley <paul@lshift.net>
parents: 90
diff changeset
    80
            preexec_fn = becomeFunc('hg'))
80
fcb20d7593e6 Rewrite install script in Python
Paul Crowley <paul@lshift.net>
parents: 79
diff changeset
    81