From 0de6455d6b8b3b64caf5c4ab96b4166b02cf6655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sun, 9 Sep 2012 17:20:03 -0300 Subject: Make it clearer --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9d03294..bc103f1 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,20 @@ +# The git user home, from where repos are served PREFIX=/srv/git +# The git user USER=git +# The git-shell path GIT_SHELL=/usr/bin/git-shell +# The hacking.git clone HACKERS=$(PWD) # Create the user user: - useradd -d $(PREFIX) -m -r -s $(GIT_SHELL) -U $(USER) + useradd --home $(PREFIX) \ + --shell $(GIT_SHELL) \ + --create-home \ + --system \ + --user-group \ + $(USER) # Create the hackers.git bare repo and clone as .ssh # Then create needed symlinks and add hooks to hackers.git @@ -13,6 +22,7 @@ install: cd $(PREFIX); \ git clone --bare $(HACKERS) hackers.git && \ git clone hackers.git .ssh && \ + chmod 700 $(PREFIX) && \ chmod 700 .ssh && \ chmod 600 .ssh/authorized_keys && \ ln -s $(PREFIX)/.ssh/git-hooks/* hackers.git/hooks/ && \ -- cgit v1.2.3