]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/roles/files/static-mirroring/static-update-component
Always remove acpi packages from jessie hosts
[dsa-puppet.git] / modules / roles / files / static-mirroring / static-update-component
1 #!/bin/bash
2
3 # Copyright (c) 2012 Peter Palfrader
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 usage() {
25   echo >&2 "Usage: $0 <component>"
26   exit 1
27 }
28
29 componentlist=/etc/static-components.conf
30
31 if [ "$#" = 1 ]; then
32   component="$1"
33 else
34   usage
35 fi
36
37
38 if [ "${component%/*}" != "$component" ] ; then
39   echo >&2 "$0: Invalid component: $component";
40   exit 1
41 fi
42
43 thishost=$(hostname -f)
44 masterhost="$(awk -v component="$component" '!/^ *(#|$)/ && $2 == component {print $1; exit}' "$componentlist")"
45 srchost="$(awk -v component="$component" '!/^ *(#|$)/ && $2 == component {print $3; exit}' "$componentlist")"
46 srcdir="$(awk -v component="$component" '!/^ *(#|$)/ && $2 == component {print $4; exit}' "$componentlist")"
47 inextralist="$(
48                awk -v component="$component" -v host="$thishost" '
49                  !/^ *(#|$)/ && $2 == component {
50                    split($5,extra,",")
51                    for (i in extra) {
52                      if (host == extra[i]) {
53                        printf "%s:%s\n", $3, $4
54                        exit
55                      }
56                    }
57                    exit
58                  }' "$componentlist"
59               )"
60 if [ -z "$srchost" ] || [ -z "$srcdir" ]; then
61   echo >&2 "$0: Invalid component: $component (not found in $componentlist)";
62   exit 1
63 fi
64
65 if ! [ "$srchost" = "$thishost" ] && [ -z "$inextralist" ]; then
66   echo >&2 "Component $component is sourced from $srchost, and this host is neither that nor in the extra allowed list."
67   exit 1
68 fi
69
70 if [ "$srchost" = "$thishost" ] && ! [ -d "$srcdir" ]; then
71   echo >&2 "Component source directory $srcdir does not exist or is not a directory, or is not accessible."
72   exit 1
73 fi
74
75 if [ "`id -nu`" != "staticsync" ]; then
76   sudo -u staticsync static-update-component "$@"
77 else
78   ssh -o AddressFamily=inet -t -t -o ServerAliveInterval=300 -o PreferredAuthentications=publickey "$masterhost" static-master-update-component "$component"
79 fi
80
81 # vim:set et:
82 # vim:set ts=2:
83 # vim:set shiftwidth=2:
84 # vim:set syn=sh: