Comment 8 for bug 659738

Revision history for this message
Kees Cook (kees) wrote : Re: Duplicate welcome message in motd after upgrade 10.04>10.10

initscripts.postinst does this:

if [ ! -f /etc/motd.tail ]
then
        if [ -f /etc/motd ]
        then
                sed 1d /etc/motd > /etc/motd.tail
                [ -s /etc/motd.tail ] || rm -f /etc/motd.tail
        fi
fi