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

Delta Between Two Patch Sets: modules/adblockplus/templates/web/hooks_wrapper.sh.erb

Issue 29733731: #7320 - Introduce helpcenter role (Closed)
Left Patch Set: Created March 27, 2018, 3:53 a.m.
Right Patch Set: Make documentation right Created April 17, 2018, 8:03 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « modules/adblockplus/manifests/web/static/hook.pp ('k') | modules/adblockplus/templates/web/static.conf.erb » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 #!/bin/sh
2 # Puppet: <%= @title %>
3 # This script is a wrapper of accesible hooks, defined via hiera and accessed
4 # via ssh with the ForceCommand option.
5
6 usage()
7 {
8 echo "Avaiable commands are:"
9 echo "help"
10 <% @hooks.keys.each do |key| -%>
11 echo "<%= key %>"
12 <% end -%>
13 }
14
15 command="$1"; shift
16 case "$command" in
17 "help")
18 usage
19 ;;
20 <% @hooks.each do |command, values| -%>
21 "<%= command %>")
22 "<%= File.join(@wrapper_path, command) %>" "$@"
23 ;;
24 <% end -%>
25 *)
26 echo "Unrecognized command"
27 usage
28 exit 1
29 ;;
30 esac
31
LEFTRIGHT

Powered by Google App Engine
This is Rietveld