#!/bin/ash

if test -r /etc/motd ; then
  cat /etc/motd
fi

if test -r /etc/profile ; then
  . /etc/profile
fi

exec /bin/ash -i "$@"

# vim:ft=sh
