#!/bin/sh
# Wrapper script to set up login environment:
# Load up all the junk in /etc/profile first, and then
# pass control to entrance proper.

test -f /etc/profile && . /etc/profile

exec /usr/local/bin/entrance "$@"

#fallback
exec entrance "$@"

