X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Ftemplates%2Fstatic-mirroring%2Fstatic-update-component.erb;h=23fb0d97347ba24c3d0a9f86aa9478b22402246f;hb=427a4f6d1a5a45ff20d554a70bd834ff28d32d7a;hp=7dbad820aea4e71ecbc1a746d503693f5cca1f31;hpb=6ef3ad53027e5223d95d5baebf93cba81ab0d119;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/templates/static-mirroring/static-update-component.erb b/modules/roles/templates/static-mirroring/static-update-component.erb index 7dbad820a..23fb0d973 100755 --- a/modules/roles/templates/static-mirroring/static-update-component.erb +++ b/modules/roles/templates/static-mirroring/static-update-component.erb @@ -21,39 +21,58 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -componentlist=/etc/static-components.conf - -if [ "$#" != 1 ]; then +usage() { echo >&2 "Usage: $0 " exit 1 +} + +componentlist=/etc/static-components.conf + +if [ "$#" = 1 ]; then + component="$1" +else + usage fi -component="$1" if [ "${component%/*}" != "$component" ] ; then echo >&2 "$0: Invalid component: $component"; exit 1 fi +thishost=$(hostname -f) srchost="$(awk -v component="$component" '$1 == component {print $2; exit}' "$componentlist")" srcdir="$(awk -v component="$component" '$1 == component {print $3; exit}' "$componentlist")" +inextralist="$( + awk -v component="$component" -v host="$thishost" ' + $1 == component { + split($4,extra,",") + for (i in extra) { + if (host == extra[i]) { + printf "%s:%s\n", $2, $3 + exit + } + } + exit + }' "$componentlist" + )" if [ -z "$srchost" ] || [ -z "$srcdir" ]; then echo >&2 "$0: Invalid component: $component (not found in $componentlist)"; exit 1 fi -if ! [ "$srchost" = "`hostname -f`" ]; then - echo >&2 "Component $component is sourced from $srchost, not this host." +if ! [ "$srchost" = "$thisthost" ] && [ -z "$inextralist" ]; then + echo >&2 "Component $component is sourced from $srchost, and this host is neither that nor in the extra allowed list." exit 1 fi -if ! [ -d "$srcdir" ]; then +if [ "$srchost" = "$thisthost" ] && ! [ -d "$srcdir" ]; then echo >&2 "Component source directory $srcdir does not exist or is not a directory, or is not accessible." exit 1 fi if [ "`id -nu`" != "staticsync" ]; then - sudo -u staticsync static-update-component "$component" + sudo -u staticsync static-update-component "$@" else masters=() <%=