src/init/hginit
author Mahlon E. Smith <mahlon@martini.nu>
Tue, 24 Jul 2012 10:48:17 -0700
changeset 350 bb7ee0a13ea9
parent 311 3cbde66305e4
permissions -rwxr-xr-x
Allow the HOMEDIR and ETCDIR to be configurable via Makefile ENV. Add FreeBSD user creation support.

#!/bin/sh

set -e

cd

if [ -e .ssh/authorized_keys ] ; then
    echo "This user already exists with authorized keys, aborting"
    exit -1
fi

cp $1/init/dot-mercurial-server .mercurial-server
mkdir -p repos/hgadmin .ssh
cd repos/hgadmin
hg init .
cp $1/init/hgadmin-hgrc .hg/hgrc