diff options
author | Joseph Turner <jturnism@gmail.com> | 2020-07-20 01:14:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-20 01:14:07 -0500 |
commit | b21cbb594347150e5cd970828609ffcac593081e (patch) | |
tree | 1a1ae379dce82d5475899d776c2741b650124a22 | |
parent | 499a1c59fbb64a4b336cfc7edf8802399a9dae91 (diff) | |
download | vyos-documentation-b21cbb594347150e5cd970828609ffcac593081e.tar.gz vyos-documentation-b21cbb594347150e5cd970828609ffcac593081e.zip |
changed small errors in build-vyos.rst
i think, let me know if this is the proper way to improve documentation.
these are just some things I noticed that I thought was wrong while building the iso myself.
-rw-r--r-- | docs/contributing/build-vyos.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/contributing/build-vyos.rst b/docs/contributing/build-vyos.rst index 4cd7f9d6..e1800816 100644 --- a/docs/contributing/build-vyos.rst +++ b/docs/contributing/build-vyos.rst @@ -77,7 +77,7 @@ The container can also be built directly from source: .. code-block:: none $ git clone -b crux --single-branch https://github.com/vyos/vyos-build # For VyOS 1.2 - $ git clone -b master --single-branch https://github.com/vyos/vyos-build # For rolling release + $ git clone -b current --single-branch https://github.com/vyos/vyos-build # For rolling release $ cd vyos-build $ docker build -t vyos/vyos-build:crux docker # For VyOS 1.2 $ docker build -t vyos/vyos-build docker # For rollign release @@ -96,7 +96,7 @@ If you have not build your own Docker image, you need to clone the repository to .. code-block:: none $ git clone -b crux --single-branch https://github.com/vyos/vyos-build # For VyOS 1.2 - $ git clone -b master --single-branch https://github.com/vyos/vyos-build # For rolling release + $ git clone -b current --single-branch https://github.com/vyos/vyos-build # For rolling release Now a fresh build of the VyOS ISO can begin. Change directory to the ``vyos-build`` directory and run: @@ -104,7 +104,7 @@ Now a fresh build of the VyOS ISO can begin. Change directory to the ``vyos-buil $ cd vyos-build $ docker run --rm -it --privileged -v $(pwd)/vyos-build:/vyos -w /vyos vyos/vyos-build:crux bash # For VyOS 1.2 - $ docker run --rm -it --privileged -v $(pwd)/vyos-build:/vyos -w /vyos vyos/vyos-build bash # Fpr rp;;omg re;ease + $ docker run --rm -it --privileged -v $(pwd)/vyos-build:/vyos -w /vyos vyos/vyos-build bash # For rolling release vyos_bld@d4220bb519a0:/vyos# ./configure --architecture amd64 \ --build-by "your@email.tld" \ --build-type release --version 1.2.5 @@ -138,7 +138,7 @@ To start, clone the repository to your local machine: .. code-block:: none $ git clone -b crux --single-branch https://github.com/vyos/vyos-build # For VyOS 1.2 - $ git clone -b crux --single-branch https://github.com/vyos/vyos-build # For rolling release + $ git clone -b current --single-branch https://github.com/vyos/vyos-build # For rolling release For the packages required, you can refer to the ``docker/Dockerfile`` file in the repository_. The ``./configure`` script will also warn you if any |