diff options
Diffstat (limited to 'share/man')
25 files changed, 277 insertions, 133 deletions
diff --git a/share/man/compute-tools.7.rst b/share/man/compute-tools.7.rst index b6405b2..3252f05 100644 --- a/share/man/compute-tools.7.rst +++ b/share/man/compute-tools.7.rst @@ -96,8 +96,8 @@ Linux' overlay filesystem Usage ===== -Create a new container: - sudo container create -n NAME +Build a new container: + sudo container build -n NAME Start a container: sudo container start -n NAME diff --git a/share/man/container-auto.1.rst b/share/man/container-auto.1.rst index fc588de..530d64c 100644 --- a/share/man/container-auto.1.rst +++ b/share/man/container-auto.1.rst @@ -73,7 +73,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-create-debconf.1.rst b/share/man/container-build-debconf.1.rst index b135b46..1649071 100644 --- a/share/man/container-create-debconf.1.rst +++ b/share/man/container-build-debconf.1.rst @@ -17,13 +17,13 @@ .. You should have received a copy of the GNU General Public License .. along with this program. If not, see <https://www.gnu.org/licenses/>. -======================== -container-create-debconf -======================== +======================= +container-build-debconf +======================= ------------------------------------------------------- -Create an advanced Debian based container with debconf ------------------------------------------------------- +----------------------------------------------------- +Build an advanced Debian based container with debconf +----------------------------------------------------- :manual section: 1 :manual group: Open Infrastructure @@ -31,32 +31,32 @@ Create an advanced Debian based container with debconf Synopsis ======== -| **container create -s debconf** ['OPTIONS'] -| **cnt cr -s debconf** ['OPTIONS'] +| **container build -s debconf** ['OPTIONS'] +| **cnt b -s debconf** ['OPTIONS'] -| **container create -s debian** ['OPTIONS'] -| **cnt cr -s debian** ['OPTIONS'] +| **container build -s debian** ['OPTIONS'] +| **cnt b -s debian** ['OPTIONS'] -| **container create -s progress-linux** ['OPTIONS'] -| **cnt cr -s progress-linux** ['OPTIONS'] +| **container build -s progress-linux** ['OPTIONS'] +| **cnt b -s progress-linux** ['OPTIONS'] Description =========== -The debconf container creation script uses debconf(1) to automatically create a +The debconf container build script uses debconf(1) to automatically build a Debian based container. Scope ----- -Note that this container creation script can do a few things more than just +Note that this container build script can do a few things more than just automatically debootstrap based on a preseed file. It also allows you to set a root password, configure the network, install certain packages and execute hooks. But: this is *not* a replacement for a configuration management system (like -ansible, puppet, etc.). The intenion of this script is to create the initial -container to that extend that a configuration managment system can take over. +ansible, puppet, etc.). The intenion of this script is to build the initial +container to that extend that a configuration management system can take over. As an analogy, think of debian-installer: d-i sets up your system to make it ready to boot and connect to the network. Everything after that is out of scope. @@ -76,7 +76,7 @@ system: Modes ----- -This container creation script can be used under two different names: debian and +This container build script can be used under two different names: debian and progress-linux. Alternative, calling it under the debconf name is equal to the debian mode. @@ -113,13 +113,13 @@ The following script options are available: Examples ======== -Create a Debian based container: +Build a Debian based container: - sudo container create -s debian -n debian.example.net + sudo container build -s debian -n debian.example.net -Create a Progress Linux container: +Build a Progress Linux container: - sudo container create -s progress-linux -n progress.example.net + sudo container build -s progress-linux -n progress.example.net Files ===== @@ -129,8 +129,8 @@ The following files are used: /etc/compute-tools/config: Container configuration files. -/usr/share/compute-tools/scripts: - Container creation scripts. +/usr/share/compute-tools/build-scripts: + Container build scripts. /usr/share/doc/compute-tools: Container documentation. @@ -154,7 +154,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-create-debootstrap.1.rst b/share/man/container-build-debootstrap.1.rst index 29ef1b6..853b4dc 100644 --- a/share/man/container-create-debootstrap.1.rst +++ b/share/man/container-build-debootstrap.1.rst @@ -17,13 +17,13 @@ .. You should have received a copy of the GNU General Public License .. along with this program. If not, see <https://www.gnu.org/licenses/>. -============================ -container-create-debootstrap -============================ +=========================== +container-build-debootstrap +=========================== --------------------------------------------------------------------- -Create a basic Debian based container with debootstrap or mmdebstrap --------------------------------------------------------------------- +------------------------------------------------------------------- +Build a basic Debian based container with debootstrap or mmdebstrap +------------------------------------------------------------------- :manual section: 1 :manual group: Open Infrastructure @@ -31,19 +31,19 @@ Create a basic Debian based container with debootstrap or mmdebstrap Synopsis ======== -| **container create -s debootstrap** ['OPTIONS'] -| **cnt cr -s debootstrap** ['OPTIONS'] +| **container build -s debootstrap** ['OPTIONS'] +| **cnt b -s debootstrap** ['OPTIONS'] -| **container create -s mmdebstrap** ['OPTIONS'] -| **cnt cr -s mmdebstrap** ['OPTIONS'] +| **container build -s mmdebstrap** ['OPTIONS'] +| **cnt b -s mmdebstrap** ['OPTIONS'] Description =========== -The debootstrap container creation script uses debootstrap(8) or mmdebstrap(1) -to create a Debian based container. +The debootstrap container build script uses debootstrap(8) or mmdebstrap(1) +to build a Debian based container. -This script creates a pure Debian system with three modificiations: +This script builds a pure Debian system with three modificiations: * apt cache of packages downloaded during debootstrap is cleaned * hostname is set (container name) in /etc/hostname @@ -61,10 +61,10 @@ The following script options are available: Specify the Debian architecture, defaults to the host systems architecture. -d, --distribution='DISTRIBUTION': - Specify the Debian distribution, defaults to bullseye. + Specify the Debian distribution, defaults to 'bullseye'. -m, --mirror='MIRROR': - Specify the Debian mirror, defaults to https://deb.debian.org/debian. + Specify the Debian mirror, defaults to 'https://deb.debian.org/debian'. -p, --root-password='PASSWORD': Specify the root password, defaults to a random 16 character password. @@ -72,15 +72,15 @@ The following script options are available: Examples ======== -Create a Debian 11 (bullseye) based container with same architecture as the host +Build a Debian 11 (bullseye) based container with same architecture as the host system using debootstrap: - sudo container create -s debootstrap -n bullseye.example.net + sudo container build -s debootstrap -n bullseye.example.net -Create a Debian 11 (bullseye) based container with different architecture as the +Build a Debian 11 (bullseye) based container with different architecture as the host system using mmdebstrap: - sudo container create -s mmdebstrap -n bullseye-i386.example.net -- -a i386 + sudo container build -s mmdebstrap -n bullseye-i386.example.net -- -a i386 See also ======== @@ -92,7 +92,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-build.1.rst b/share/man/container-build.1.rst new file mode 100644 index 0000000..38a4aed --- /dev/null +++ b/share/man/container-build.1.rst @@ -0,0 +1,139 @@ +.. Open Infrastructure: compute-tools + +.. Copyright (C) 2014-2021 Daniel Baumann <daniel.baumann@open-infrastructure.net> +.. +.. SPDX-License-Identifier: GPL-3.0+ +.. +.. This program is free software: you can redistribute it and/or modify +.. it under the terms of the GNU General Public License as published by +.. the Free Software Foundation, either version 3 of the License, or +.. (at your option) any later version. +.. +.. This program is distributed in the hope that it will be useful, +.. but WITHOUT ANY WARRANTY; without even the implied warranty of +.. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.. GNU General Public License for more details. +.. +.. You should have received a copy of the GNU General Public License +.. along with this program. If not, see <https://www.gnu.org/licenses/>. + +=============== +container-build +=============== + +----------------- +Build a container +----------------- + +:manual section: 1 +:manual group: Open Infrastructure + +Synopsis +======== + +| **container build** ['OPTIONS'] +| **cnt b** ['OPTIONS'] + +Description +=========== + +The **container build** command builds a container based on a script. + +Scripts +------- + +The following build scripts are available: + +debootstrap: + Basic script to build Debian based container, see + container-build-debootstrap(1). + +debconf: + Advanced script to automatically build Debian based container, see + container-build-debconf(1). + +default: + Symlink (if existing) to a build script which is used if no script was + specified. On Debian based system this can be managed through + update-alternatives(1), i.e. 'sudo update-alternatives --config + container_build-script'. + +Options +======= + +The following **container build** options are available: + +-n, --name='NAME': + Specify container name. + +-c, --capability='CAPABILITY': + Specify capabilities to grant, see capabilities(7). + +-d, --drop-capability='DROP_CAPABILITY': + Specify capabilities to drop, see capabilities(7). + +-s, --script='SCRIPT': + Specify container build script, defaults to 'debootstrap'. + +-v, --verbose: + Explain what is being done. + +-b, --bind='DIRECTORY:DIRECTORY[:OPTIONS][;DIRECTORY:DIRECTORY[:OPTIONS]]': + Specify container read-write bind mounts, see systemd-nspawn(1) --bind option. + +--bind-ro='DIRECTORY:DIRECTORY[:OPTIONS][;DIRECTORY:DIRECTORY[:OPTIONS]]': + Specify container read-only bind mounts, see systemd-nspawn(1) --bind-ro + option. + +--cnt-overlay='DIRECTORY_LOWER:DIRECTORY_UPPER:DIRECTORY_WORK:DIRECTORY_MERGED[;DIRECTORY_UPPER:DIRECTORY_LOWER:DIRECTORY_WORK:DIRECTORY_MERGED]': + Specify container overlay mounts, see Documentation/filesystems/overlayfs.txt. + +--cnt.overlay-options='OPTION1,OPTION2[;OPTION3,OPTION4]': + Specify container overlay mount options, see + Documentation/filesystems/overlayfs.txt. + +--cnt.start='OPTION1[,OPTION2,...]': + Specify container start options, see container-start(1). + +Examples +======== + +Build example.net container using debootstrap script: + + sudo container build -n example.net -s debootstrap + +Build example.net container using debconf script: + + sudo container build -n example.net -s debconf + +Build example.net container with the default build script and start it: + + sudo container build,start -n example.net + +See also +======== + +| compute-tools(7), +| container(1). + +Homepage +======== + +More information about compute-tools and the Open Infrastructure project can be +found on the homepage (https://open-infrastructure.net). + +Contact +======= + +Bug reports, feature requests, help, patches, support and everything else are +welcome on the Open Infrastructure Software Mailing List +<software@lists.open-infrastructure.net>. + +Debian specific bugs can also be reported in the Debian Bug Tracking System +(https://bugs.debian.org). + +Authors +======= + +compute-tools were written by Daniel Baumann +<daniel.baumann@open-infrastructure.net> and others. diff --git a/share/man/container-console.1.rst b/share/man/container-console.1.rst index 3571bc5..b07ba95 100644 --- a/share/man/container-console.1.rst +++ b/share/man/container-console.1.rst @@ -67,7 +67,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-enter.1.rst b/share/man/container-enter.1.rst index c2f89c6..4948e3a 100644 --- a/share/man/container-enter.1.rst +++ b/share/man/container-enter.1.rst @@ -67,7 +67,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-create-curl.1.rst b/share/man/container-get-curl.1.rst index ce11006..ba44ba0 100644 --- a/share/man/container-create-curl.1.rst +++ b/share/man/container-get-curl.1.rst @@ -17,13 +17,13 @@ .. You should have received a copy of the GNU General Public License .. along with this program. If not, see <https://www.gnu.org/licenses/>. -===================== -container-create-curl -===================== +================== +container-get-curl +================== -------------------------------------------------------------------------- -Create a Debian based container by downloading a tarball over the network -------------------------------------------------------------------------- +--------------------------------------------------------------------------- +Download a Debian based container by downloading a tarball over the network +--------------------------------------------------------------------------- :manual section: 1 :manual group: Open Infrastructure @@ -31,12 +31,12 @@ Create a Debian based container by downloading a tarball over the network Synopsis ======== -| **container create -s curl** ['OPTIONS'] +| **container get -s curl** ['OPTIONS'] Description =========== -The curl container creation script uses curl(1) to download a tarball over the +The curl container download script uses curl(1) to download a tarball over the network to create a Debian based container. Depending on the tarball this script otherwise creates a pure Debian system @@ -65,18 +65,20 @@ The following script options are available: Specify container architecture. --clean: - Remove downloaded tarball after successfull container creation. + Remove container tarball after successful download. -p, --root-password='PASSWORD': Specify the root password, defaults to a random 16 character password. --server='SERVER': Specify the image server to download from, defaults to - https://get.open-infrastructure.net/system/container/debian. + 'https://get.open-infrastructure.net/system/container/debian'. --setup='SETUP': Specify the setup image name to download, defaults to the value specified - through --system using the setup.tar.${COMPRESSION} suffix. + through --system using the setup.tar.${COMPRESSION} suffix (where + ${COMPRESSION} is either lz, xz, or gz depending on compressor availability on + the host system). --system='SYSTEM': Specify the system image name to download, defaults to @@ -87,15 +89,15 @@ The following script options are available: Examples ======== -Create a Debian 11 (bullseye) based container with same architecture as the host +Download a Debian 11 (bullseye) based container with same architecture as the host system: - sudo container create -s curl -n bullseye.example.net + sudo container get -s curl -n bullseye.example.net -Create a Debian 11 (bullseye) based container with different architecture as the +Download a Debian 11 (bullseye) based container with different architecture as the host system: - sudo container create -s curl -n bullseye-i386.example.net -- --system debian-bullseye-current_i386.system.tar.xz + sudo container get -s curl -n bullseye-i386.example.net -- --system debian-bullseye-current_i386.system.tar.xz Files ===== @@ -105,8 +107,8 @@ The following files are used: /etc/compute-tools/config: Container configuration files. -/usr/share/compute-tools/scripts: - Container creation scripts. +/usr/share/compute-tools/get-scripts: + Container download scripts. /usr/share/doc/compute-tools: Container documentation. @@ -127,7 +129,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-create.1.rst b/share/man/container-get.1.rst index ada6c72..edcb1de 100644 --- a/share/man/container-create.1.rst +++ b/share/man/container-get.1.rst @@ -17,13 +17,13 @@ .. You should have received a copy of the GNU General Public License .. along with this program. If not, see <https://www.gnu.org/licenses/>. -================ -container-create -================ +============= +container-get +============= ------------------- -Create a container ------------------- +-------------------- +Download a container +-------------------- :manual section: 1 :manual group: Open Infrastructure @@ -31,40 +31,32 @@ Create a container Synopsis ======== -| **container create** ['OPTIONS'] -| **cnt cr** ['OPTIONS'] +| **container get** ['OPTIONS'] +| **cnt g** ['OPTIONS'] Description =========== -The **container create** command creates a container based on a script. +The **container get** command downloads a container based on a script. Scripts ------- -The following container scripts are available: +The following download scripts are available: curl: - Basic script to create Debian based container, see container-create-curl(1). - -debootstrap: - Basic script to create Debian based container, see - container-create-debootstrap(1). - -debconf: - Advanced script to automatically create Debian based container, see - container-create-debconf(1). + Basic script to build Debian based container, see container-create-curl(1). default: - Symlink (if existing) to a container script which is used if no script was + Symlink (if existing) to a download script which is used if no script was specified. On Debian based system this can be managed through update-alternatives(1), i.e. 'sudo update-alternatives --config - container_script'. + container_get-script'. Options ======= -The following **container create** options are available: +The following **container get** options are available: -n, --name='NAME': Specify container name. @@ -76,7 +68,7 @@ The following **container create** options are available: Specify capabilities to drop, see capabilities(7). -s, --script='SCRIPT': - Specify container creation script, defaults to debootstrap. + Specify container build script, defaults to 'debootstrap'. -v, --verbose: Explain what is being done. @@ -103,19 +95,11 @@ Examples Create example.net container using curl script: - sudo container create -n example.net -s curl - -Create example.net container using debootstrap script: - - sudo container create -n example.net -s debootstrap - -Create example.net container using debconf script: - - sudo container create -n example.net -s debconf + sudo container get -n example.net -s curl -Create example.net container with the default create script and start it: +Create example.net container with the default download script and start it: - sudo container create,start -n example.net + sudo container get,start -n example.net See also ======== @@ -127,7 +111,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-info.1.rst b/share/man/container-info.1.rst index 3b4d4c1..c3c8e7d 100644 --- a/share/man/container-info.1.rst +++ b/share/man/container-info.1.rst @@ -41,8 +41,8 @@ The **container info** command shows specific information of a container. Options ======= -The following **container info** options are available, defaults to *--status ---os --ip*: +The following **container info** options are available, defaults to '--status +--os --ip': --status: Show container status (started|stopped|other). @@ -78,7 +78,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-key.1.rst b/share/man/container-key.1.rst index 0ae508a..d21956a 100644 --- a/share/man/container-key.1.rst +++ b/share/man/container-key.1.rst @@ -44,7 +44,7 @@ Options The following **container key** options are available: --a, --add='KEY': +-a, --add='KEY_FILE|KEY_ID': Add a key to the keyring. -l, --list': @@ -56,14 +56,33 @@ The following **container key** options are available: Examples ======== -Add a key to the keyring: +Add a key to the keyring manually: - gpg --keyserver hkps://hkps.pool.sks-keyservers.net --recv 0x1E9B3AED2D9FA8F6 - gpg --armor --export 0x1E9B3AED2D9FA8F6 | sudo container key --add - + gpg --keyserver hkps://keys.openpgp.org --recv 0x55CF1BF986ABB9C7 + gpg --armor --export 0x55CF1BF986ABB9C7 | sudo container key --add - + +Assisted adding of the same key: + + sudo container key --add 0x55CF1BF986ABB9C7 Remove a key from the keyring: - sudo container key --remove 0x1E9B3AED2D9FA8F6 + sudo container key --remove 0x55CF1BF986ABB9C7 + +List keys in the keyring: + + sudo container key --list + +Files +===== + +The following files are used: + +/etc/compute-tools/keys: + Active container keyring. + +/usr/share/compute-tools/keys: + Inactive container keyring library. See also ======== @@ -75,7 +94,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-limit.1.rst b/share/man/container-limit.1.rst index 0fcfea5..67fad3d 100644 --- a/share/man/container-limit.1.rst +++ b/share/man/container-limit.1.rst @@ -21,9 +21,9 @@ container-limit =============== -------------------------------- -Limit ressources of a container -------------------------------- +------------------------------ +Limit resources of a container +------------------------------ :manual section: 1 :manual group: Open Infrastructure @@ -36,7 +36,7 @@ Synopsis Description =========== -The **container limit** command limits ressources available to a container at +The **container limit** command limits resources available to a container at runtime. Options @@ -102,7 +102,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-list.1.rst b/share/man/container-list.1.rst index 265ae50..6cd516f 100644 --- a/share/man/container-list.1.rst +++ b/share/man/container-list.1.rst @@ -126,7 +126,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-log.1.rst b/share/man/container-log.1.rst index 2d26a37..7984aa0 100644 --- a/share/man/container-log.1.rst +++ b/share/man/container-log.1.rst @@ -82,7 +82,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-move.1.rst b/share/man/container-move.1.rst index f77662f..550f1db 100644 --- a/share/man/container-move.1.rst +++ b/share/man/container-move.1.rst @@ -74,7 +74,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-remove.1.rst b/share/man/container-remove.1.rst index f1b1df0..d62f527 100644 --- a/share/man/container-remove.1.rst +++ b/share/man/container-remove.1.rst @@ -85,7 +85,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-restart.1.rst b/share/man/container-restart.1.rst index ee13d00..fb98a78 100644 --- a/share/man/container-restart.1.rst +++ b/share/man/container-restart.1.rst @@ -71,7 +71,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-run.1.rst b/share/man/container-run.1.rst index f2ad4c6..890c95d 100644 --- a/share/man/container-run.1.rst +++ b/share/man/container-run.1.rst @@ -69,7 +69,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-shell.1.rst b/share/man/container-shell.1.rst index 2aa1b91..a41bd2a 100644 --- a/share/man/container-shell.1.rst +++ b/share/man/container-shell.1.rst @@ -122,7 +122,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-start.1.rst b/share/man/container-start.1.rst index a1478f6..b444c6e 100644 --- a/share/man/container-start.1.rst +++ b/share/man/container-start.1.rst @@ -74,7 +74,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-status.1.rst b/share/man/container-status.1.rst index b60ceeb..79675be 100644 --- a/share/man/container-status.1.rst +++ b/share/man/container-status.1.rst @@ -64,7 +64,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-stop.1.rst b/share/man/container-stop.1.rst index ca2a73b..29bfa3d 100644 --- a/share/man/container-stop.1.rst +++ b/share/man/container-stop.1.rst @@ -79,7 +79,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-top.1.rst b/share/man/container-top.1.rst index 24b1050..8d1493c 100644 --- a/share/man/container-top.1.rst +++ b/share/man/container-top.1.rst @@ -44,7 +44,7 @@ Options The following **container top** options are available, defaults to '--delay 1': -d, --delay='SECONDS[.TENTHS]': - Specifies the delay between screen updates, defaults to 1. + Specifies the delay between screen updates, defaults to '1'. Examples ======== @@ -62,7 +62,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container-version.1.rst b/share/man/container-version.1.rst index 12bc9bb..3a57999 100644 --- a/share/man/container-version.1.rst +++ b/share/man/container-version.1.rst @@ -60,7 +60,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= diff --git a/share/man/container.1.rst b/share/man/container.1.rst index 895e558..cce283b 100644 --- a/share/man/container.1.rst +++ b/share/man/container.1.rst @@ -53,8 +53,8 @@ Commands The following **container** commands are available: -create: - Create a new container, see container-create(1). +build: + Build a new container, see container-build(1). start: Start a container, see container-start(1). @@ -87,7 +87,7 @@ key: Manage GnuPG keyring for container operations, see container-key(1). limit: - Limit ressources of a container, see container-limit(1). + Limit resources of a container, see container-limit(1). list: List container on the system, see container-list(1). @@ -146,7 +146,7 @@ Homepage ======== More information about compute-tools and the Open Infrastructure project can be -found on the homepage at https://open-infrastructure.net. +found on the homepage (https://open-infrastructure.net). Contact ======= |