From 3035e86d5577087230a5c1a31d7f1ec04cf0fca3 Mon Sep 17 00:00:00 2001 From: X86BSD Date: Sun, 3 May 2020 16:59:33 -0500 Subject: [PATCH 1/2] Clarify description of bastille_bootstrap_archives Make it clear its a white space separated list not a ',' separated list. --- usr/local/etc/bastille/bastille.conf.sample | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/usr/local/etc/bastille/bastille.conf.sample b/usr/local/etc/bastille/bastille.conf.sample index 9c55649..b0cfaac 100644 --- a/usr/local/etc/bastille/bastille.conf.sample +++ b/usr/local/etc/bastille/bastille.conf.sample @@ -14,7 +14,14 @@ bastille_templatesdir=${bastille_prefix}/templates ## default ## bastille scripts directory (assumed by bastille pkg) bastille_sharedir=/usr/local/share/bastille ## default: "/usr/local/share/bastille" -## bootstrap archives (base, lib32, ports, src, test) +## bootstrap archives, which components of the OS to install. +## base - The base OS, kernel + userland +## lib32 - Libraries for comptibility with 32 bit binaries +## ports - The FreeBSD ports (3rd party applications) tree +## src - The source code to the kernel + userland +## test - The FreeBSD test suite +## this is a whitespace separated list: +## bastille_bootstrap_archives="base lib32 ports src test" bastille_bootstrap_archives="base" ## default: "base" ## default timezone From b6b76fb7ae06aec128adfce14cfd7e71157ee0c1 Mon Sep 17 00:00:00 2001 From: X86BSD Date: Sun, 3 May 2020 17:21:08 -0500 Subject: [PATCH 2/2] Correct a typo Compatibility was spelled wrong. --- usr/local/etc/bastille/bastille.conf.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/etc/bastille/bastille.conf.sample b/usr/local/etc/bastille/bastille.conf.sample index b0cfaac..73523d3 100644 --- a/usr/local/etc/bastille/bastille.conf.sample +++ b/usr/local/etc/bastille/bastille.conf.sample @@ -16,7 +16,7 @@ bastille_sharedir=/usr/local/share/bastille ## default ## bootstrap archives, which components of the OS to install. ## base - The base OS, kernel + userland -## lib32 - Libraries for comptibility with 32 bit binaries +## lib32 - Libraries for compatibility with 32 bit binaries ## ports - The FreeBSD ports (3rd party applications) tree ## src - The source code to the kernel + userland ## test - The FreeBSD test suite