mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-08-09 11:30:16 +00:00
9 lines
270 B
Bash
9 lines
270 B
Bash
#!/bin/sh
|
|
|
|
filters_federation='{"kinds":[38383, 31986, 1059]}'
|
|
timeout_duration="15s"
|
|
|
|
while IFS= read -r line; do
|
|
timeout "$timeout_duration" /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_federation" --dir both
|
|
done < /app/federation_urls.txt
|