From 3ce233785c903b62b7f2e7eb64a71a0ba81a33fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sat, 8 Sep 2012 19:40:49 -0300 Subject: The *Working* Makefile --- Makefile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a5cfa59..9d03294 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,13 @@ HACKERS=$(PWD) user: useradd -d $(PREFIX) -m -r -s $(GIT_SHELL) -U $(USER) -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 . +# Create the hackers.git bare repo and clone as .ssh +# Then create needed symlinks and add hooks to hackers.git +install: + cd $(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 -- cgit v1.2.2