phunix/minix/commands/postinstall/postinstall.sh
Lionel Sambuc 433d6423c3 New sources layout
Change-Id: Ic716f336b7071063997cf5b4dae6d50e0b4631e9
2014-07-31 16:00:30 +02:00

12 lines
404 B
Bash

#!/bin/sh
echo -n "Would you like to install binary packages from the CD? (y/N) "
read y
if [ "$y" = y -o "$y" = Y ]
then echo "Ok, showing you a list of packages, please type y"
echo "for every package you want installed."
/usr/bin/packme
else echo "Ok, not installing binary packages."
fi
echo "Use the 'packme' command after rebooting MINIX to get another chance"
echo "to install binary packages."