summaryrefslogtreecommitdiff
path: root/Makefile
blob: accda790c257855b110b34070002c26079ce9299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PREFIX=/srv/git
USER=git
SHELL=/usr/bin/git-shell
HACKERS=$(PWD)

# Create the user
user: 
	useradd -d $(PREFIX) -m -r -s $(SHELL) -U 

install: user
	pushd $(PREFIX)
	git clone --bare $(HACKERS) hackers.git
	git clone hackers.git .ssh
	chmod 700 .ssh
	chmod 600 .ssh/authorized_keys
	ln -s $(PREFIX)/.ssh/git-hooks/* hackers.git/hooks/
	ln -s $(PREFIX)/.ssh/git-shell-commands .