1
0
mirror of https://github.com/Adam-Ant/puppet-motd synced 2024-07-06 05:36:13 +00:00

Update facts for legacy facter support

This commit is contained in:
Adam Dodman 2018-02-22 15:05:43 +00:00
parent 56b3923c99
commit c1a606b8dd
3 changed files with 8 additions and 8 deletions

View File

@ -9,4 +9,4 @@
# Learn more about module testing here: # Learn more about module testing here:
# https://docs.puppet.com/guides/tests_smoke.html # https://docs.puppet.com/guides/tests_smoke.html
# #
include ::motd include motd

View File

@ -22,7 +22,7 @@
# #
class motd { class motd {
$motd_hash = { $motd_hash = {
'ascii' => generate('/bin/sh', '-c', "/usr/bin/figlet -cw 60 ${$facts['networking']['hostname']}"), 'ascii' => generate('/bin/sh', '-c', "/usr/bin/figlet -cw 60 ${$facts['hostname']}"),
} }
file { '/etc/motd': file { '/etc/motd':

View File

@ -5,13 +5,13 @@
------------------------------------------------------------ ------------------------------------------------------------
<%= $ascii %> <%= $ascii %>
------------------------------------------------------------ ------------------------------------------------------------
Welcome to <%= $facts['networking']['fqdn'] %> Welcome to <%= $facts['fqdn'] %>
OS: <%= $facts['os']['name'] %> <%= $facts['os']['release']['full'] %> OS: <%= $facts['operatingsystem'] %> <%= $facts['operatingsystemrelease'] %>
OS Family: <%= $facts['os']['family'] %> OS Family: <%= $facts['osfamily'] %>
Architecture: <%= $facts['os']['architecture'] %> Architecture: <%= $facts['architecture'] %>
Kernel Version: <%= $facts['kernelversion'] %> Kernel Version: <%= $facts['kernelversion'] %>
IP: <%= $facts['networking']['ip'] %> IP: <%= $facts['ipaddress'] %>
RAM: <%= $facts['memory']['system']['total'] %> RAM: <%= $facts['memorysize'] %>
------------------------------------------------------------ ------------------------------------------------------------
This system is managed by Puppet version <%= $facts['puppetversion'] %> This system is managed by Puppet version <%= $facts['puppetversion'] %>
------------------------------------------------------------ ------------------------------------------------------------