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