mirror of
https://codeberg.org/oliphant/blocklists.git
synced 2024-11-03 15:59:29 +00:00
11 lines
295 B
Bash
Executable file
11 lines
295 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
# generate files
|
|
exec > >(tee /opt/fediblockhole/logs/fedisync-production.log) 2>&1
|
|
|
|
# push to github and codeberg
|
|
# note: copy your own version to /fediblockhole/local
|
|
/opt/fediblockhole/fedisync-git.sh
|
|
|
|
# push to remote servers
|
|
/opt/fediblockhole/fedisync-example-server.sh
|