install
author Paul Crowley <paul@lshift.net>
Fri, 06 Mar 2009 08:56:48 +0000
changeset 66 2f0ea1163b9e
parent 59 f96de2d99f00
child 67 fd16d9a1234b
permissions -rwxr-xr-x
Change intro to README and linewrap at column 75

#!/bin/sh

set -e

install -o root -g root -d /usr/local/lib/mercurial-server
install -o root -g root -t /usr/local/lib/mercurial-server \
    src/hg-ssh \
    src/do-refresh-auth
install -o root -g root -t /usr/local/lib/mercurial-server -m 644 \
    src/changes.py \
    src/access.py \
    src/servelog.py \
    src/ruleset.py
install -o root -g root -d /usr/local/lib/mercurial-server/init
install -o root -g root -t /usr/local/lib/mercurial-server/init \
    src/init/hginit
install -o root -g root -t /usr/local/lib/mercurial-server/init -m 644 \
    src/init/hgadmin-hgrc
install -o root -g root -d /etc/mercurial-server
install -o root -g root -t /etc/mercurial-server \
    src/init/conf/hg-ssh-wrapper \
    src/init/conf/refresh-auth
install -o root -g root -t /etc/mercurial-server -m 644 \
    src/init/conf/remote-hgrc \
    src/init/conf/access.conf
install -o root -g root -d /etc/mercurial-server/keys/root
install -o root -g root -d /etc/mercurial-server/keys/users

if [ x$(getent passwd hg | wc -c) = x0 ] ; then
    adduser --system --shell /bin/sh --group --disabled-password \
        --gecos "Mercurial repositories" hg
    su -c /usr/local/lib/mercurial-server/init/hginit hg
fi