version bumps for release preparation

This commit is contained in:
Christer Edwards
2021-01-01 09:13:44 -07:00
parent 4136f8fff4
commit a0feac3f66
5 changed files with 28 additions and 5 deletions

View File

@@ -79,7 +79,7 @@ Use "bastille command -h|--help" for more information about a command.
``` ```
## 0.7-beta ## 0.8-beta
This document outlines the basic usage of the Bastille container management This document outlines the basic usage of the Bastille container management
framework. This release is still considered beta. framework. This release is still considered beta.

View File

@@ -4,7 +4,7 @@ Bastille is available in the official FreeBSD ports tree at
`sysutils/bastille`. Binary packages available in `quarterly` and `latest` `sysutils/bastille`. Binary packages available in `quarterly` and `latest`
repositories. repositories.
Current version is `0.7.20200714`. Current version is `0.8.20210101`.
To install from the FreeBSD package repository: To install from the FreeBSD package repository:

View File

@@ -86,6 +86,29 @@ Lastly, you may want to consider these three `sysctl` values:
net.link.bridge.pfil_onlyip=0 net.link.bridge.pfil_onlyip=0
net.link.bridge.pfil_member=0 net.link.bridge.pfil_member=0
**Regarding Routes**
Bastille will attempt to auto-detect the default route from the host system and
assign it to the VNET container. This auto-detection may not always be accurate
for your needs for the particular container. In this case you'll need to add
a default route manually or define the preferred default route in the
`bastille.conf`.
.. code-block:: shell
bastille sysrc TARGET defaultrouter=aa.bb.cc.dd
bastille service TARGET routing restart
To define a default route / gateway for all VNET containers define the value in
`bastille.conf`:
.. code-block:: shell
bastille_network_gateway=aa.bb.cc.dd
This config change will apply the defined gateway to any new containers.
Existing containers will need to be manually updated.
Public Network Public Network
============== ==============

View File

@@ -12,9 +12,9 @@ copyright = '2018-2020, Christer Edwards'
author = 'Christer Edwards' author = 'Christer Edwards'
# The short X.Y version # The short X.Y version
version = '0.7.20200714' version = '0.8.20210101'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.7.20200714-beta' release = '0.8.20210101-beta'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View File

@@ -70,7 +70,7 @@ bastille_perms_check() {
bastille_perms_check bastille_perms_check
## version ## version
BASTILLE_VERSION="0.7.20200714" BASTILLE_VERSION="0.8.20210101"
usage() { usage() {
cat << EOF cat << EOF