X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Ffiles%2Fstatic-mirroring%2Fstatic-mirror-run-all;fp=modules%2Froles%2Ffiles%2Fstatic-mirroring%2Fstatic-mirror-run-all;h=11ec2884f73174d44bdbe4c3ffde3e9eeda8a505;hb=a6a56555039941b10af2d856138661f50680485b;hp=0000000000000000000000000000000000000000;hpb=f33999f3ba7cf0c67e08ac9f28c61355d0d00dc3;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/files/static-mirroring/static-mirror-run-all b/modules/roles/files/static-mirroring/static-mirror-run-all new file mode 100755 index 000000000..11ec2884f --- /dev/null +++ b/modules/roles/files/static-mirroring/static-mirror-run-all @@ -0,0 +1,41 @@ +#!/bin/bash + +# initiate a mirror run for all components on this host. + +# Copyright (c) 2012, 2015 Peter Palfrader +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +set -e +set -u + +awk -v host="$(hostname -f)" ' + !/^ *(#|$)/ { + split($6,ignorehosts,",") + for (i in ignorehosts) { + if (host == ignorehosts[i]) { + next + } + } + print $1, $2 + }' /etc/static-components.conf | + while read master component ; do + static-mirror-run --one-stage "/srv/static.debian.org/mirrors/$component" "$master:$component/-live-" + done