summaryrefslogtreecommitdiff
path: root/hg/init.d/40hg-init
blob: cf9733bb216a7308a526c69669631a7349c6e1d7 (plain)
1
2
3
4
5
6
7
#!/bin/sh
set -e
if [ ! -e .hg ]; then
	hg init
	echo  "[web]\n" > .hg/hgrc
	echo  "$(hostname) /etc repository" > .hg/hgrc
fi