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=ed214e58fda570587558a460cbeb6a8ec9e48308;hpb=c73119860d16f410891cfbb46db21569dff77db8;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 ed214e58f..23fb0d973 100755 --- a/modules/roles/templates/static-mirroring/static-update-component.erb +++ b/modules/roles/templates/static-mirroring/static-update-component.erb @@ -22,7 +22,7 @@ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. usage() { - echo >&2 "Usage: $0 [-f] " + echo >&2 "Usage: $0 " exit 1 } @@ -30,10 +30,6 @@ componentlist=/etc/static-components.conf if [ "$#" = 1 ]; then component="$1" -elif [ "$#" = 2 ]; then - if [ "$1" = "-f" ]; then force=1 - else usage; fi - component="$2" else usage fi @@ -44,19 +40,33 @@ if [ "${component%/*}" != "$component" ] ; then 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`" ] && ! [ "$force" = 1 ]; 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" ] && ! [ "$force" = 1 ]; 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