Allow free shell after creation

This commit is contained in:
dave 2015-01-24 15:11:55 -08:00
parent c30f41a3c1
commit b09f3805cb
1 changed files with 7 additions and 7 deletions

14
start
View File

@ -57,15 +57,15 @@ if [ ! -f /home/admin/znc_configured ]; then
touch /home/admin/znc_configured
#echo -n "Do you want to make any other changes inside this container? (y/n): "
#read domore
#if [ "$domore" == "y" ] ; then
# echo "Type 'exit' or press ctrl-d when finished."
# exec bash
#fi
echo "Now, run docker start <containerid> run znc in the background."
echo -n "Do you want to make any other changes inside this container? (y/N): "
read domore
if [ "$domore" == "y" ] ; then
echo "Type 'exit' when finished."
exec bash
fi
exit
fi