Adjust 95-package-information for new log layout
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 31-motd
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/scripts/GRMLBASE/31-motd
3 # Purpose:       make sure the motd setup is correct
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 # Latest change: Wed Sep 19 20:13:01 CEST 2007 [mika]
8 ################################################################################
9
10 set -u
11 set -e
12
13 if [ -f $target/etc/motd.dpkg-new ] ; then
14    $ROOTCMD mv /etc/motd.dpkg-new /var/run/motd
15 fi
16
17 ## END OF FILE #################################################################
18 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3