]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/roles/files/static-mirroring/static-master-update-component
Create target if it does not exist
[dsa-puppet.git] / modules / roles / files / static-mirroring / static-master-update-component
1 #!/bin/bash
2
3 # Updates one component (i.e. subdirectory) in static-master/master
4
5 # acquires a shared lock on the base directory (so that we know no updates are
6 # outgoing, as those acquire an exclusive one).  Also acquired an exclusive lock
7 # on the component directory in question.
8 #
9 # The config file is a list of component source-directory pairs.
10
11 # Copyright (c) 2012 Peter Palfrader
12 #
13 # Permission is hereby granted, free of charge, to any person obtaining
14 # a copy of this software and associated documentation files (the
15 # "Software"), to deal in the Software without restriction, including
16 # without limitation the rights to use, copy, modify, merge, publish,
17 # distribute, sublicense, and/or sell copies of the Software, and to
18 # permit persons to whom the Software is furnished to do so, subject to
19 # the following conditions:
20 #
21 # The above copyright notice and this permission notice shall be
22 # included in all copies or substantial portions of the Software.
23 #
24 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31
32 componentlist=/etc/static-components.conf
33 base=/home/staticsync/static-master/master
34
35 set -e
36 set -u
37
38
39 lock() {
40   local fd="$1"; shift
41   local path="$1"; shift
42   local exclusive="$1"; shift
43
44   eval "exec $fd< '$path'"
45
46   if [ "$exclusive" -gt 0 ]; then
47     locktype="-e"
48   else
49     locktype="-s"
50   fi
51
52   if ! flock "$locktype" "$fd"; then
53     echo >&2 "$0: Cannot acquire lock on $base (flock $locktype failed) - Very bad, we should have waited!"
54     exit 1
55   fi
56 }
57
58 unlock() {
59   local fd="$1"; shift
60
61   if ! flock -o "$fd"; then
62     echo >&2 "$0: Cannot release lock on fd $fd - This should not have happened!"
63     exit 1
64   fi
65   eval "exec $fd<&-"
66 }
67
68 if [ "$#" != 1 ]; then
69   echo >&2 "Usage: $0 <component>"
70   exit 1
71 fi
72
73 component="$1"
74
75 if [ "${component%/*}" != "$component" ] ; then
76   echo >&2 "$0: Invalid component: $component";
77   exit 1
78 fi
79
80 srchost="$(awk -v component="$component" '$1 == component {print $2; exit}' "$componentlist")"
81 srcdir="$(awk -v component="$component" '$1 == component {print $3; exit}' "$componentlist")"
82 if [ -z "$srchost" ] || [ -z "$srcdir" ]; then
83   echo >&2 "$0: Invalid component: $component (not found in $componentlist)";
84   exit 1
85 fi
86 tgt="$base/$component"
87
88 if [ "$srchost" = "`hostname -f`" ]; then
89   src="$srcdir"
90 else
91   src="$srchost:$srcdir"
92 fi
93
94 echo "$0: Acquiring locks..."
95 lock 200 "$base" 0
96 lock 201 "$tgt" 1
97
98 tmpdir_new="$(mktemp -d --tmpdir="$base" "${component}.new-XXXXXX")"
99 tmpdir_old="$(mktemp -d --tmpdir="$base" "${component}.old-XXXXXX")"
100 trap "rm -rf '$tmpdir_new' '$tmpdir_old'" EXIT
101 chmod 0755 "$tmpdir_new"
102
103 lock 202 "$tmpdir_new" 1
104 echo "$0: Got them."
105
106 echo "$0: Updating master copy of $component..."
107 rsync --delete \
108   -tr \
109   --link-dest="$tgt" \
110   "$src/." "$tmpdir_new/."
111 echo "$0: Done.  Committing."
112
113 mv "$tgt" "$tmpdir_old/old"
114 if ! mv "$tmpdir_new" "$tgt"; then
115   echo >&2 "$0: WARNING: could not move $tmpdir_new to $tgt.  Trying to recover"
116   rm -rf "$tgt"
117   mv "$tmpdir_old/old" "$tgt"
118   echo >&2 "$0: Rolled back to old tree maybe successfully."
119   exit 1
120 fi
121
122 rm -rf "$tmpdir_new" "$tmpdir_old"
123 trap - EXIT
124
125 date '+%s' > "$base/.serial"
126 unlock 201
127 unlock 200
128 echo "$0: Triggering mirror runs..."
129 exec static-master-run
130
131 # vim:set et:
132 # vim:set ts=2:
133 # vim:set shiftwidth=2: