<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in fetchmissingdists</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>12b92f3e - bsdinstall: use the correct DISTDIR for fetching local distfiles</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists#12b92f3e</link>
        <description>bsdinstall: use the correct DISTDIR for fetching local distfilesfetchmissingdists naturally sets BSDINSTALL_DISTDIR to a directory inthe new filesystem that it can write fetched distfiles to.  As a result,BSDINSTALL_DISTSITE was incorrectly set to the scratch space on /mnt forthe call to distfetch when grabbing local distfiles, and it wouldsubsequently fail.Switch to using the copy of BSDINSTALL_DISTDIR that we stashed offcoming into fetchmissingdists; this one is in-fact set to the path wherethe local distfiles are stored.Patch suggested by jrtc27.Reported and tested by: Daniel O&apos;Connor &lt;darius dons net au&gt;MFC after:	1 week

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists</description>
        <pubDate>Fri, 14 Oct 2022 05:22:09 +0000</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2913e785 - bsdinstall: fix a couple stragglers in whitelabeling the scripts</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists#2913e785</link>
        <description>bsdinstall: fix a couple stragglers in whitelabeling the scriptsPR:		265797Reviewed by:	allanjude, asicilianoSponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)Differential Revision:	https://reviews.freebsd.org/D36235

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists</description>
        <pubDate>Wed, 14 Sep 2022 17:04:07 +0000</pubDate>
        <dc:creator>Brad Davis &lt;brd@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cc42ef53 - bsdinstall: allow whitelabeling the scripts</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists#cc42ef53</link>
        <description>bsdinstall: allow whitelabeling the scriptsApproved by:		allanjude, asicilianoDifferential Revision:	https://reviews.freebsd.org/D35197Sponsored by:		Rubicon Communications, LLC (&quot;Netgate&quot;)

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists</description>
        <pubDate>Tue, 24 May 2022 15:49:06 +0000</pubDate>
        <dc:creator>Brad Davis &lt;brd@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>48af6ad9 - bsdinstall fetchmissingdists: Replace dialog with bsddialog</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists#48af6ad9</link>
        <description>bsdinstall fetchmissingdists: Replace dialog with bsddialogReplace (LGPL) dialog utility with (BSD-2-Clause) bsddialog utility.Approved by:		bapt (mentor)Differential Revision:	https://reviews.freebsd.org/D34654

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists</description>
        <pubDate>Tue, 29 Mar 2022 14:39:43 +0000</pubDate>
        <dc:creator>Alfonso S. Siciliano &lt;asiciliano@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f0ec0fda - bsdinstall: Add quotes around error message argument</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists#f0ec0fda</link>
        <description>bsdinstall: Add quotes around error message argumentWhen error is called with a message with spaces (and probably multiplelines) these are passed into dialog unquoted and an error message waspresented, wrap with quotes.Reviewed by:	bapt, allanjudeSponsored by:   Ampere Computing LLCSponsored by:   Klara Inc.Differential Revision:	https://reviews.freebsd.org/D33918

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists</description>
        <pubDate>Thu, 27 Jan 2022 17:10:06 +0000</pubDate>
        <dc:creator>Tom Jones &lt;thj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>40923b0c - Fix scripted installation from media without local distfiles.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists#40923b0c</link>
        <description>Fix scripted installation from media without local distfiles.The bsdinstall script target did not have the infrastructure to fetchdistfiles from a remote server the way the interactive installer doeson e.g. bootonly media. Solve this by factoring out the parts of theinstaller that deal with fetching missing distributions into a newinstall stage called &apos;fetchmissingdists&apos;, which is called by both theinteractive and scripted installer frontends.In the course of these changes, cleaned up a few other issues withthe fetching of missing distribution files and added a warning iffetching the MANIFEST file, which is used to verify the integrity ofthe distribution files. We should at some point add cryptographicsignatures to MANIFEST so that it can be fetched safely if not presenton the install media (which it is for bootonly media).Initial patch by: Vin&#237;cius ZavamPR:		255659, 250928Reviewed by:	dteskeMFC after:	4 weeksDifferential Revision:	https://reviews.freebsd.org/D27121

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/fetchmissingdists</description>
        <pubDate>Fri, 28 May 2021 13:53:42 +0000</pubDate>
        <dc:creator>Nathan Whitehorn &lt;nwhitehorn@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
