source: trunk/minix/commands/scripts/postinstall.sh@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 404 bytes
Line 
1#!/bin/sh
2echo -n "Would you like to install binary packages from the CD? (y/N) "
3read y
4if [ "$y" = y -o "$y" = Y ]
5then echo "Ok, showing you a list of packages, please type y"
6 echo "for every package you want installed."
7 /usr/bin/packme
8else echo "Ok, not installing binary packages."
9fi
10echo "Use the 'packme' command after rebooting MINIX to get another chance"
11echo "to install binary packages."
Note: See TracBrowser for help on using the repository browser.