From 8e8f419024a630458be3566c6326cc88b3905364 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Wed, 2 Mar 2016 23:49:14 +0100 Subject: [PATCH] motd: squeeze cleanup Signed-off-by: Julien Cristau --- modules/motd/manifests/init.pp | 29 +++++++++-------------------- modules/motd/templates/motd.erb | 10 ++-------- 2 files changed, 11 insertions(+), 28 deletions(-) diff --git a/modules/motd/manifests/init.pp b/modules/motd/manifests/init.pp index 893620643..cb42099c1 100644 --- a/modules/motd/manifests/init.pp +++ b/modules/motd/manifests/init.pp @@ -7,23 +7,12 @@ # 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': @@ -31,9 +20,9 @@ class 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') } diff --git a/modules/motd/templates/motd.erb b/modules/motd/templates/motd.erb index 43753f352..686f63019 100644 --- a/modules/motd/templates/motd.erb +++ b/modules/motd/templates/motd.erb @@ -1,8 +1,6 @@ -<% if @lsbmajdistrelease >= '7' -%> #!/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 @@ -112,10 +110,8 @@ if scope.lookupvar('::cluster') 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" @@ -145,9 +141,7 @@ purp -%> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -<% if @lsbmajdistrelease >= '7' -%> EOD -<% end -%> <% # vim:set et: # vim:set sts=2 ts=2: -- 2.20.1