summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdconfig/examples/browse_packages_ftp.sh
blob: 015d799f801c92853d56db28a2e6c0bb9b32061a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
# $FreeBSD$
#
# This sample downloads the package INDEX file from FTP to /tmp (if it doesn't
# already exist) and then displays the package configuration/management screen
# using the local INDEX file (results in faster browsing of packages from-start
# since the INDEX can be loaded from local media).
#
# NOTE: Packages cannot be installed unless staged to /tmp/packages/All
#
. /usr/share/bsdconfig/script.subr
nonInteractive=1
TMPDIR=/tmp
if [ ! -e "$TMPDIR/packages/INDEX" ]; then
	[ -d "$TMPDIR/packages" ] || mkdir -p "$TMPDIR/packages" || exit 1
	_ftpPath=ftp://ftp.freebsd.org
	# For older releases, use ftp://ftp-archive.freebsd.org
	mediaSetFTP
	mediaOpen
	f_show_info "Downloading packages/INDEX from\n %s" "$_ftpPath" 
	f_device_get device_media packages/INDEX > $TMPDIR/packages/INDEX
fi
_directoryPath=$TMPDIR
mediaSetDirectory
configPackages
OpenPOWER on IntegriCloud