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