#!/bin/sh

if [ -r /etc/motd ] ; then
	echo "================ /etc/motd ==============="
	cat /etc/motd
fi
if [ -r /store/etc/motd ] ; then
	echo "============= /store/etc/motd ============"
	cat /store/etc/motd
fi
