forked from ungleich-public/cdist
have __motd regenerate on Debian/Ubuntu
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
parent
6af7eadc89
commit
6cd419b334
2 changed files with 36 additions and 0 deletions
33
cdist/conf/type/__motd/gencode-remote
Executable file
33
cdist/conf/type/__motd/gencode-remote
Executable file
|
@ -0,0 +1,33 @@
|
||||||
|
# 2013 Nico Schottelius (nico-cdist at schottelius.org)
|
||||||
|
#
|
||||||
|
# This file is part of cdist.
|
||||||
|
#
|
||||||
|
# cdist is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# cdist is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
os=$(cat "$__global/explorer/os")
|
||||||
|
|
||||||
|
case "$os" in
|
||||||
|
debian|ubuntu)
|
||||||
|
|
||||||
|
# Debian and Ubuntu need to be updated,
|
||||||
|
# as seen in /etc/init.d/bootlogs
|
||||||
|
echo "uname -snrvm > /var/run/motd"
|
||||||
|
echo "cat /etc/motd.tail >> /var/run/motd"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
|
@ -7,7 +7,10 @@ Changelog
|
||||||
2.3.2:
|
2.3.2:
|
||||||
* Core: Fix typo in argument parser
|
* Core: Fix typo in argument parser
|
||||||
* Core: Code cleanup: Remove old install code (Steven Armstrong)
|
* Core: Code cleanup: Remove old install code (Steven Armstrong)
|
||||||
|
* Core: Improve error message when using non-existing type in requirement
|
||||||
* Type __cdist: Also create home directory
|
* Type __cdist: Also create home directory
|
||||||
|
* Type __cdist: Add support for --shell parameter
|
||||||
|
* Type __motd: Regenerate motd on Debian and Ubuntu
|
||||||
|
|
||||||
2.3.1: 2013-08-28
|
2.3.1: 2013-08-28
|
||||||
* Core: Support relative paths for configuration directories
|
* Core: Support relative paths for configuration directories
|
||||||
|
|
Loading…
Reference in a new issue