X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=ansible%2Ffiles%2Ftorwaechter%2Fpost-receive;h=ec6070b0008c5c10f8c5a0a7ed838250b0cfbd20;hb=c8155f0116aae4d88698eded32c8afc64a28cf7f;hp=57f7b2cc5c1ee2120401751eba82ca9d249be3de;hpb=dcf1ea76ad802c0fe038539c9476ce4f9cc4dde8;p=noc.git diff --git a/ansible/files/torwaechter/post-receive b/ansible/files/torwaechter/post-receive index 57f7b2c..ec6070b 100755 --- a/ansible/files/torwaechter/post-receive +++ b/ansible/files/torwaechter/post-receive @@ -5,13 +5,13 @@ set -eu -keys_branch=$(git config hooks.keys_branch 2>/dev/null) -keys_file=$(git config hooks.keys_file 2>/dev/null) -keys_pipe_to=$(git config hooks.keys_pipe_to 2>/dev/null) +keys_branch=$(git config hooks.keys_branch 2>/dev/null || echo "") +keys_file=$(git config hooks.keys_file 2>/dev/null || echo "") +keys_pipe_to=$(git config hooks.keys_pipe_to 2>/dev/null || echo "") keys_branch=${keys_branch:-master} keys_file=${keys_file:-keys} -keys_pipe_to=${keys_pipe_to:-/usr/local/bin/update-keys-from-stdin.sh} +keys_pipe_to=${keys_pipe_to:-sudo /usr/local/bin/update-keys-from-stdin.sh} changedcommits=$( grep "refs/heads/${keys_branch}" | sed 's/\([0-9a-f]\+\)\s\+\([0-9a-f]\+\)\s\+.*/\1..\2/;' )