summaryrefslogtreecommitdiff
path: root/git-hooks
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-07-31 17:04:09 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-07-31 17:04:09 -0300
commit6f27d1a0c9553f7a9f436655cc3925639bdbc238 (patch)
tree918c0ecfb3c129ca90895a2876469fa18c088e14 /git-hooks
parentdb606fff74219aae955bc9490534140bef4cfe60 (diff)
Added the post-receive hook
Diffstat (limited to 'git-hooks')
-rwxr-xr-xgit-hooks/post-receive22
1 files changed, 22 insertions, 0 deletions
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 $?