2018-12-10 16:33:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
ISO_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
|
|
|
|
|
2018-12-23 17:21:41 +00:00
|
|
|
# Ensure registry repository is up-to-date
|
2018-12-26 21:47:45 +00:00
|
|
|
git -C ../registry/ pull upstream master:master --quiet 2>&1
|
2018-12-23 17:21:41 +00:00
|
|
|
|
|
|
|
# Checkout master branch in dn42/repository
|
|
|
|
git -C ../registry/ checkout master --quiet
|
|
|
|
|
2019-01-04 11:18:41 +00:00
|
|
|
# Do a git pull beforehand to ensure our repository is up-to-date
|
|
|
|
git checkout master
|
|
|
|
git pull origin master:master
|
|
|
|
|
|
|
|
# Do the same for sub-repo if exists
|
|
|
|
if [ -d roa/.git/ ] ; then
|
|
|
|
git -C roa/ checkout master --quiet
|
|
|
|
if [ $(git -C roa/ remote | grep origin) ] ; then
|
|
|
|
git -C roa/ pull origin master:master --quiet
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-12-23 17:21:41 +00:00
|
|
|
# Update with data from registry
|
|
|
|
php roagen.php
|
|
|
|
php rfc8416.php
|
|
|
|
|
2019-01-04 10:11:22 +00:00
|
|
|
# Ensure sub-repo is created to track roa file udpates
|
|
|
|
if [ ! -d roa/ ] ; then mkdir roa ; fi
|
|
|
|
if [ ! -d roa/.git/ ] ; then
|
|
|
|
git -C roa/ init
|
|
|
|
if [ ! -f roa/README.md ; then
|
|
|
|
touch roa/README.md
|
|
|
|
echo '## roas' | tee roa/README.md ; fi
|
|
|
|
git -C roa/ commit --allow-empty -m "Initial commit"
|
2019-01-04 10:31:03 +00:00
|
|
|
git -C roa/ commit README.md -m "Add README.md" ; fi
|
2019-01-04 10:11:22 +00:00
|
|
|
|
2018-12-23 20:53:22 +00:00
|
|
|
# Write out last commit to file
|
2019-01-03 13:37:29 +00:00
|
|
|
echo "## Notes
|
|
|
|
|
|
|
|
- These files are Bird 1.x compatible:
|
|
|
|
- bird_roa_dn42.conf
|
|
|
|
- bird4_roa_dn42.conf
|
|
|
|
- bird6_roa_dn42.conf
|
|
|
|
- These files are Bird 2.x compatible:
|
|
|
|
- bird_route_dn42.conf
|
|
|
|
- bird4_route_dn42.conf
|
|
|
|
- bird6_route_dn42.conf
|
|
|
|
|
|
|
|
## Last commit
|
2018-12-23 20:53:22 +00:00
|
|
|
|
|
|
|
\`\`\`
|
2018-12-27 23:50:52 +00:00
|
|
|
$(git -C ../registry/ log -n 1)
|
2018-12-23 20:54:29 +00:00
|
|
|
\`\`\`" > roa/README.md
|
2018-12-23 20:53:22 +00:00
|
|
|
|
2018-12-14 18:51:54 +00:00
|
|
|
# Commit latest version of ROA files
|
2019-01-04 10:31:03 +00:00
|
|
|
git -C roa/ add README.md *.conf *.json
|
|
|
|
git -C roa/ commit -m "Updated ROA files - $ISO_DATE" --quiet
|
2018-12-10 16:33:34 +00:00
|
|
|
|
2019-01-04 10:16:37 +00:00
|
|
|
# Push ROA repository to every remote configured
|
|
|
|
for REMOTE in $(git -C roa/ remote | egrep -v upstream | paste -sd " " -) ; do git -C roa/ push $REMOTE master:master --quiet ; done
|
|
|
|
|
|
|
|
# Push local roagen repository to every remote configured
|
2018-12-23 20:53:22 +00:00
|
|
|
for REMOTE in $(git remote | egrep -v upstream | paste -sd " " -) ; do git push $REMOTE master:master --quiet ; done
|