Couldn't you just patch /etc/init.d/bootmisc.sh to add a different
message if the machine was installed from a Server ISO, or is running
the server kernel?

Use a different /etc/motd.tail possibly.  A quick example:

        # Update motd
        uname -snrvm > /var/run/motd
        $server=$(uname -snrvm | grep -o server)
        if [ $server ]; then                
                [ -f /etc/motd_server.tail ] && cat /etc/motd.tail >> 
/var/run/motd
        else
                [ -f /etc/motd.tail ] && cat /etc/motd.tail >> /var/run/motd
        fi

Just my thought.

-- 
Default MOTD for server should point to documentation URL
https://bugs.launchpad.net/bugs/159371
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to