minix/commands/postinstall/postinstall.sh

12 lines
404 B
Bash
Raw Normal View History

2006-02-06 17:17:54 +01:00
#!/bin/sh
echo -n "Would you like to install binary packages from the CD? (y/N) "
read y
2006-03-17 14:55:12 +01:00
if [ "$y" = y -o "$y" = Y ]
2006-02-06 17:17:54 +01:00
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."