move things from modules/roles/static* to modules/static*
[mirror/dsa-puppet.git] / modules / roles / files / static-mirroring / static-mirror-run-all
diff --git a/modules/roles/files/static-mirroring/static-mirror-run-all b/modules/roles/files/static-mirroring/static-mirror-run-all
deleted file mode 100755 (executable)
index c6aea0c..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/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 -u
-
-. /etc/staticsync.conf
-if ! [ -n "$base" ]; then
-  echo >&2 "base not configured!"
-  exit 1
-fi
-
-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 "$base/mirrors/$component" "$master:$component/-live-"
-  done