Deleted Added
full compact
browse_packages_http.sh (255818) browse_packages_http.sh (264840)
1#!/bin/sh
1#!/bin/sh
2# $FreeBSD: head/usr.sbin/bsdconfig/examples/browse_packages_http.sh 255818 2013-09-23 16:47:52Z dteske $
2# $FreeBSD: head/usr.sbin/bsdconfig/examples/browse_packages_http.sh 264840 2014-04-23 22:04:04Z dteske $
3#
4# This sample downloads the package INDEX file from HTTP 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
12nonInteractive=1
13TMPDIR=/tmp
14if [ ! -e "$TMPDIR/packages/INDEX" ]; then
15 [ -d "$TMPDIR/packages" ] || mkdir -p "$TMPDIR/packages" || exit 1
16 _httpPath=http://ftp.freebsd.org
17 # For older releases, use http://ftp-archive.freebsd.org
18 mediaSetHTTP
19 mediaOpen
20 f_show_info "Downloading packages/INDEX from\n %s" "$_httpPath"
3#
4# This sample downloads the package INDEX file from HTTP 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
12nonInteractive=1
13TMPDIR=/tmp
14if [ ! -e "$TMPDIR/packages/INDEX" ]; then
15 [ -d "$TMPDIR/packages" ] || mkdir -p "$TMPDIR/packages" || exit 1
16 _httpPath=http://ftp.freebsd.org
17 # For older releases, use http://ftp-archive.freebsd.org
18 mediaSetHTTP
19 mediaOpen
20 f_show_info "Downloading packages/INDEX from\n %s" "$_httpPath"
21 f_device_get media packages/INDEX > $TMPDIR/packages/INDEX
21 f_device_get device_media packages/INDEX > $TMPDIR/packages/INDEX
22fi
23_directoryPath=$TMPDIR
24mediaSetDirectory
25configPackages
22fi
23_directoryPath=$TMPDIR
24mediaSetDirectory
25configPackages