summaryrefslogtreecommitdiff
path: root/git-hooks
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-09-05 12:52:20 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-09-05 12:52:20 -0300
commit702f37e055d15028c97195303d60dd209b13a60a (patch)
treecf344adeffdf56a54f12e30f10d9afc2c8057020 /git-hooks
parent177ca49a40c9afdcad8bfbc7492c9f1a49d686ba (diff)
parent6af067f7fc3eb71b4cc7549999f3dd623afacb53 (diff)
Merge branch 'master' of ../hackers
Conflicts: authorized_keys
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 $?