1#!/bin/sh 2# 3# This sample installs a short list of packages from the main HTTP site. 4# 5[ "$_SCRIPT_SUBR" ] || . /usr/share/bsdconfig/script.subr || exit 1 6nonInteractive=1 7_httpPath=http://pkg.freebsd.org 8mediaSetHTTP 9mediaOpen 10for package in wget bash rsync; do 11 packageAdd 12done 13