# include motd
#
class motd {
- if $::lsbmajdistrelease >= 7 {
- $fname = '/etc/update-motd.d/puppet-motd'
- $notify = undef
- $mode = '0555'
-
- file { '/etc/update-motd.d':
- ensure => directory,
- mode => '0755'
- }
- file { '/etc/motd.tail':
- ensure => absent,
- }
- } else {
- $fname = '/etc/motd.tail'
- $notify = Exec['updatemotd']
- $mode = '0444'
-
+ file { '/etc/update-motd.d':
+ ensure => directory,
+ mode => '0755'
+ }
+ file { '/etc/motd.tail':
+ ensure => absent,
}
file { '/etc/motd':
target => '/var/run/motd'
}
- file { $fname:
- notify => $notify,
- mode => $mode,
+ file { '/etc/update-motd.d/puppet-motd':
+ notify => undef,
+ mode => '0555',
content => template('motd/motd.erb')
}
-<% if @lsbmajdistrelease >= '7' -%>
#!/bin/bash
cat <<EOD
-<% end -%>
This device is for authorized users only. All traffic on this device
is monitored and will be used as evidence for prosecutions. By using
purp += scope.lookupvar('::cluster').to_s + ":\n"
purp += "\t" + scope.lookupvar('::cluster_nodes').split.sort.map{ |x| x.split('.')[0] }.join(", ") + ".\n"
- if @lsbmajdistrelease >= '7'
- purp += ""
- purp += "\tCurrently the master node is $(cat /var/lib/ganeti/ssconf_master_node).\n"
- end
+ purp += ""
+ purp += "\tCurrently the master node is $(cat /var/lib/ganeti/ssconf_master_node).\n"
#nodes = scope.lookupvar('::cluster_nodes').sort
#nodes.each do |node|
# purp += "\t" + node + "\n"
-%>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-<% if @lsbmajdistrelease >= '7' -%>
EOD
-<% end -%>
<%
# vim:set et:
# vim:set sts=2 ts=2: