X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmotd%2Ftemplates%2Fmotd.erb;h=8622602296ecc949c3fcfb1ecd26899b932863c0;hb=7ef0d8c95980695dd186992d0882a7bfea1fecda;hp=6beeadd3b10844913338d8891b633edb30cadf29;hpb=2d5047464d25dff02f548fd6fbc8c44a0848fc25;p=mirror%2Fdsa-puppet.git diff --git a/modules/motd/templates/motd.erb b/modules/motd/templates/motd.erb index 6beeadd3b..862260229 100644 --- a/modules/motd/templates/motd.erb +++ b/modules/motd/templates/motd.erb @@ -1,3 +1,8 @@ +<% if @lsbdistcodename == 'wheezy' -%> +#!/bin/bash + +cat < This device is for authorized users only. All traffic on this device is monitored and will be used as evidence for prosecutions. By using @@ -69,7 +74,12 @@ end purp += "\n" if (scope.lookupvar('site::nodeinfo')['ldap'].has_key?('physicalHost')) - purp += wrap("This virtual server runs on the physical host #{ninfo['ldap']['physicalHost'][0]}, " + + if ninfo['ldap']['physicalHost'][0] =~ /ganeti/ + phys_host = 'cluster' + else + phys_host = 'physical host' + end + purp += wrap("This virtual server runs on the #{phys_host} #{ninfo['ldap']['physicalHost'][0]}, " + "which is hosted at #{ninfo['hoster']['longname']}." ) elsif scope.lookupvar('site::nodeinfo')['hoster']['name'] @@ -100,14 +110,34 @@ unless vms.empty? end +if scope.lookupvar('::cluster').to_s != 'undefined' + purp += "\nThis server is a node in ganeti cluster: " + purp += scope.lookupvar('::cluster').to_s + ".\n" + nodes = scope.lookupvar('::cluster_nodes').to_s.split.sort + nodes.each do |node| + purp += "\t" + node + "\n" + end + nodes.reject{|node| node.eql?(fqdn)}.each do |node| + purp += "\t" + node + "\n" + scope.lookupvar('site::allnodeinfo')[node]['ipHostNumber'].each do |ip| + purp += "\t\t" + ip + "\n" + end + end +end + + if scope.lookupvar('site::nodeinfo').has_key?('footer') purp += "\n" + wrap(scope.lookupvar('site::nodeinfo')['footer']) + "\n" end + purp -%> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +<% if @lsbdistcodename == 'wheezy' -%> +EOD +<% end -%> <% # vim:set et: # vim:set sts=2 ts=2: