From 6f27d1a0c9553f7a9f436655cc3925639bdbc238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Tue, 31 Jul 2012 17:04:09 -0300 Subject: Added the post-receive hook --- git-hooks/post-receive | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 git-hooks/post-receive (limited to 'git-hooks') diff --git a/git-hooks/post-receive b/git-hooks/post-receive new file mode 100755 index 0000000..671dd4e --- /dev/null +++ b/git-hooks/post-receive @@ -0,0 +1,22 @@ +#!/bin/bash +# post-receive hook, updates /srv/git/.ssh after pushing to this repo +# install: +# git clone hackers.git .ssh +# cp .ssh/git-hooks/post-receive hackers.git/hooks/ + +# fail on any error +set -E + +# the ssh dir +ssh_dir=/srv/git/.ssh + +# pull this repo +git --git-dir ${ssh_dir}/.git \ + --work-tree ${ssh_dir} \ + pull origin master + +# secure the files +chmod 600 ${ssh_dir}/authorized_keys +chmod 700 ${ssh_dir} + +exit $? -- cgit v1.2.3