Skip to content

Instantly share code, notes, and snippets.

@ddeimeke
Created August 28, 2017 08:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ddeimeke/f155955573c6411c5eeb0f9de898cbf2 to your computer and use it in GitHub Desktop.
Save ddeimeke/f155955573c6411c5eeb0f9de898cbf2 to your computer and use it in GitHub Desktop.
Resubscribe all GNUsocial Feeds
#!/bin/bash
set -o errexit
set -o nounset
cd /srv/www/gnusocial.ch/plugins/OStatus/scripts
sudo -u apache php gcfeeds.php \
| awk '{print $1}' \
| while read feed; do
sudo -u apache php resub-feed.php "$feed"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment