coreos-home-server/service/hugo/container/run-hugo
Alex Palaistras b7ca813a40 Improve webhook behaviour for Gitea
Webhook execution in Gitea will now wait longer before returning, and
Hugo will correctly set permissions on destination directories.
2022-10-28 18:33:42 +01:00

24 lines
685 B
Bash
Executable File

#!/bin/sh
set -eu
# Generate host keys if none were found.
for t in rsa ecdsa ed25519; do
if test ! -f /etc/ssh/keys/ssh_host_${t}_key; then
ssh-keygen -q -t $t -f /etc/ssh/keys/ssh_host_${t}_key -C '' -N '' > /dev/null
fi
echo "Host key type '$t' for SSH authentication:"
cat /etc/ssh/keys/ssh_host_${t}_key.pub
done
# Create configuration file from collected templates.
envsubst < /etc/hugo/hooks.yaml.template > /etc/hugo/hooks.yaml
# Correct permissions where needed.
chown hugo:hugo /etc/ssh/keys/ssh_host_*
chown -R hugo:hugo /build
# Run webhook listener for configured hooks.
gosu hugo /bin/webhook -verbose -port 8080 -hooks /etc/hugo/hooks.yaml