#!/bin/sh
echo $* >/tmp/log
OPTIONS=$@
if [ "$OPTIONS" = "" ] ; then
	OPTIONS=--login
fi
exec /usr/sbin/chbind --silent --ip 0.0.0.0 /bin/bash $OPTIONS

