Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: modules/updateserver/templates/update_update_manifests.erb

Issue 5071748311547904: Issue 1094 - Generate update manifests on the update server (Closed)
Left Patch Set: Reduced duplication Created July 25, 2014, 7:17 a.m.
Right Patch Set: Run as user sitescripts Created July 25, 2014, 2:17 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 #!/bin/bash 1 #!/bin/bash
2 2
3 run_file="/var/run/update_update_manifests" 3 lock_file="<%= sitescripts_var_dir %>/update_update_manifests.lock"
4 4
5 if [[ -f $run_file ]]; then 5 exec 9>"$lock_file"
6 exit 0 6 flock -n 9 || exit 0
Wladimir Palant 2014/07/25 09:50:11 What if this script crashes and doesn't remove the
Felix Dahlke 2014/07/25 10:31:15 Using flock now, are you happy with that? It'll ha
Wladimir Palant 2014/07/25 11:11:02 I'd really prefer a standardized solution that wou
Felix Dahlke 2014/07/25 14:17:56 I've looked into daemon, but I don't like the fact
7 fi
8
9 echo "$$" >> "$run_file"
10 7
11 <% repositories_to_sync.each do |repository| %> 8 <% repositories_to_sync.each do |repository| %>
12 hg pull -q -u -R <%= base_dir %>/<%= repository %> 9 hg pull -q -R "<%= sitescripts_var_dir %>/<%= repository %>"
Wladimir Palant 2014/07/25 09:50:11 Updating is unnecessary, the scripts work with the
Felix Dahlke 2014/07/25 10:31:15 Done.
13 <% end %> 10 <% end %>
14 11
15 export PYTHONPATH=/opt/sitescripts 12 export PYTHONPATH=/opt/sitescripts
16 python -m sitescripts.extensions.bin.updateUpdateManifests 13 python -m sitescripts.extensions.bin.updateUpdateManifests
Wladimir Palant 2014/07/25 09:50:11 No need to export the variable if it is only used
Felix Dahlke 2014/07/25 10:31:15 It's shorter that way, I try to stick to 80 chars.
17 14
18 rm -f "$run_file" 15 rm -f "$lock_file"
LEFTRIGHT

Powered by Google App Engine
This is Rietveld