First commit

This commit is contained in:
pezcurrel 2024-10-31 22:58:54 +01:00
parent ad8999463c
commit 017e527709

14
updateAndUpload.sample.bash Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
set -e
basedir=$(dirname "$0")
cd "$basedir"
outfp='index.html'
./pfaltgall 'pixelfed.social.conf' "${outfp}"
curl -s --ssl-reqd --ftp-pasv -T "${outfp}" -u "username:password" ftp://some_hostname/pfaltgall/
exit 0