Repository is archived
No commit activity in last 3 years
No release in over 3 years
Edits MOTD at the end of a Chef run
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

ChefMOTD handler

Update your MOTD after a Chef run with various data

Prerequisites

Mostly, just having MOTD configured. We use Estately's motd cookbook

Usage

Either just pull the handler file into a files directory of one of your cookbooks, or download as a Rubygem and source it that way.

# Option 1
cookbook_file "#{node[:chef_handler][:handler_path]}/chef-handler-motd.rb" do
  source 'chef-handler-motd.rb'
  mode 00600
end

chef_handler 'ChefMOTD' do
  source "#{node[:chef_handler][:handler_path]}/chef-handler-motd.rb"
  action :enable
end

# Option 2
chef_gem 'chef-handler-motd' do
  action :install
end

chef_handler 'ChefMOTD' do
  source ::File.join(Gem.all_load_paths.grep(/chef-handler-motd/).first,
                     'chef-handler-motd.rb')
  action :enable
end

Arguments

  • priority - Determines where the Chef data is displayed in MOTD (default 05)

Questions?

Hop on ##simple on Freenode with any questions or concerns.

Author

Simple Finance ops@simple.com

License

Apache License, Version 2.0