diff -r a2342f26c9de -r b0b56e0f8c7f dev/provisioning/modules/puppi/templates/info/readme.erb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev/provisioning/modules/puppi/templates/info/readme.erb Fri Jan 15 15:35:00 2016 +0100 @@ -0,0 +1,22 @@ +#!/bin/bash +# <%= @description %> +# Script generated by Puppet. It's executed when you run: +# puppi info <%= @name %> +# +# Sources common header for Puppi scripts +. <%= scope.lookupvar('puppi::params::scriptsdir') %>/header || exit 10 + +# Show ReadMe file +echo_title "$HOSTNAME - <%= @name %>: ReadMe" +show_command "cat <%= scope.lookupvar('puppi::params::readmedir') %>/<%= @name %>" + +<% if @autoreadme == "yes" %> +echo_title "$HOSTNAME - <%= @name %>: ReadMe Custom" +show_command "cat <%= scope.lookupvar('puppi::params::readmedir') %>/<%= @name %>-custom" +<% end %> + +<% if @run != "" %> +echo_title "$HOSTNAME - <%= @name %>: Extra info" +<% @run.each do |cmd| %>show_command "<%= cmd %>" +<% end %> +<% end %>