mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
Merge branch 'next/major' of github.com:Start9Labs/start-os into mcp
This commit is contained in:
714
core/Cargo.lock
generated
714
core/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -15,7 +15,7 @@ license = "MIT"
|
||||
name = "start-os"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/Start9Labs/start-os"
|
||||
version = "0.4.0-alpha.21" # VERSION_BUMP
|
||||
version = "0.4.0-alpha.22" # VERSION_BUMP
|
||||
|
||||
[lib]
|
||||
name = "startos"
|
||||
@@ -63,7 +63,7 @@ async-compression = { version = "0.4.32", features = [
|
||||
] }
|
||||
async-stream = "0.3.5"
|
||||
async-trait = "0.1.74"
|
||||
axum = { version = "0.8.4", features = ["ws", "http2"] }
|
||||
axum = { version = "0.8.4", features = ["http2", "ws"] }
|
||||
backtrace-on-stack-overflow = { version = "0.3.0", optional = true }
|
||||
base32 = "0.5.0"
|
||||
base64 = "0.22.1"
|
||||
@@ -100,6 +100,7 @@ fd-lock-rs = "0.1.4"
|
||||
form_urlencoded = "1.2.1"
|
||||
futures = "0.3.28"
|
||||
gpt = "4.1.0"
|
||||
hashing-serializer = "0.1.1"
|
||||
hex = "0.4.3"
|
||||
hickory-server = { version = "0.25.2", features = ["resolver"] }
|
||||
hmac = "0.12.1"
|
||||
@@ -182,16 +183,16 @@ r3bl_tui = "0.7.6"
|
||||
rand = "0.9.2"
|
||||
regex = "1.10.2"
|
||||
reqwest = { version = "0.12.25", features = [
|
||||
"http2",
|
||||
"json",
|
||||
"socks",
|
||||
"stream",
|
||||
"http2",
|
||||
] }
|
||||
reqwest_cookie_store = "0.9.0"
|
||||
rpassword = "7.2.0"
|
||||
rpc-toolkit = { git = "https://github.com/Start9Labs/rpc-toolkit.git" }
|
||||
rust-argon2 = "3.0.0"
|
||||
rust-i18n = "3.1.5"
|
||||
rpc-toolkit = { git = "https://github.com/Start9Labs/rpc-toolkit.git" }
|
||||
semver = { version = "1.0.20", features = ["serde"] }
|
||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||
serde_cbor = { package = "ciborium", version = "0.2.1" }
|
||||
@@ -232,7 +233,9 @@ uuid = { version = "1.4.1", features = ["v4"] }
|
||||
visit-rs = "0.1.1"
|
||||
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
|
||||
zbus = "5.1.1"
|
||||
hashing-serializer = "0.1.1"
|
||||
|
||||
[dev-dependencies]
|
||||
clap_mangen = "0.2.33"
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
procfs = "0.18.0"
|
||||
|
||||
44
core/build/build-manpage.sh
Executable file
44
core/build/build-manpage.sh
Executable file
@@ -0,0 +1,44 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "$(dirname "${BASH_SOURCE[0]}")"
|
||||
|
||||
source ./builder-alias.sh
|
||||
|
||||
set -ea
|
||||
shopt -s expand_aliases
|
||||
|
||||
PROFILE=${PROFILE:-debug}
|
||||
if [ "${PROFILE}" = "release" ]; then
|
||||
BUILD_FLAGS="--release"
|
||||
else
|
||||
if [ "$PROFILE" != "debug" ]; then
|
||||
>&2 echo "Unknown profile $PROFILE: falling back to debug..."
|
||||
PROFILE=debug
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
ARCH=$(uname -m)
|
||||
fi
|
||||
|
||||
if [ "$ARCH" = "arm64" ]; then
|
||||
ARCH="aarch64"
|
||||
fi
|
||||
|
||||
RUST_ARCH="$ARCH"
|
||||
if [ "$ARCH" = "riscv64" ]; then
|
||||
RUST_ARCH="riscv64gc"
|
||||
fi
|
||||
|
||||
cd ../..
|
||||
FEATURES="$(echo $ENVIRONMENT | sed 's/-/,/g')"
|
||||
RUSTFLAGS=""
|
||||
if [[ "${ENVIRONMENT}" =~ (^|-)console($|-) ]]; then
|
||||
RUSTFLAGS="--cfg tokio_unstable"
|
||||
fi
|
||||
echo "FEATURES=\"$FEATURES\""
|
||||
echo "RUSTFLAGS=\"$RUSTFLAGS\""
|
||||
rust-zig-builder cargo test --manifest-path=./core/Cargo.toml --lib $BUILD_FLAGS --features test,$FEATURES --locked 'export_manpage_'
|
||||
if [ "$(ls -nd "core/man" | awk '{ print $3 }')" != "$UID" ]; then
|
||||
rust-zig-builder sh -c "chown -R $UID:$UID core/target && chown -R $UID:$UID core/man && chown -R $UID:$UID /usr/local/cargo"
|
||||
fi
|
||||
@@ -872,6 +872,13 @@ disk.main.disk-not-found:
|
||||
fr_FR: "Disque StartOS non trouvé."
|
||||
pl_PL: "Nie znaleziono dysku StartOS."
|
||||
|
||||
disk.main.converting-to-btrfs:
|
||||
en_US: "Performing file system conversion to btrfs. This can take many hours, please be patient and DO NOT unplug the server."
|
||||
de_DE: "Dateisystemkonvertierung zu btrfs wird durchgeführt. Dies kann viele Stunden dauern, bitte haben Sie Geduld und trennen Sie den Server NICHT vom Strom."
|
||||
es_ES: "Realizando conversión del sistema de archivos a btrfs. Esto puede tardar muchas horas, tenga paciencia y NO desconecte el servidor."
|
||||
fr_FR: "Conversion du système de fichiers vers btrfs en cours. Cela peut prendre de nombreuses heures, soyez patient et NE débranchez PAS le serveur."
|
||||
pl_PL: "Wykonywanie konwersji systemu plików na btrfs. To może potrwać wiele godzin, prosimy o cierpliwość i NIE odłączaj serwera od zasilania."
|
||||
|
||||
disk.main.incorrect-disk:
|
||||
en_US: "A StartOS disk was found, but it is not the correct disk for this device."
|
||||
de_DE: "Eine StartOS-Festplatte wurde gefunden, aber es ist nicht die richtige Festplatte für dieses Gerät."
|
||||
@@ -2656,6 +2663,13 @@ help.arg.allow-partial-backup:
|
||||
fr_FR: "Laisser le média monté même si backupfs échoue à monter"
|
||||
pl_PL: "Pozostaw nośnik zamontowany nawet jeśli backupfs nie może się zamontować"
|
||||
|
||||
help.arg.architecture:
|
||||
en_US: "Target CPU architecture (e.g. x86_64, aarch64)"
|
||||
de_DE: "Ziel-CPU-Architektur (z.B. x86_64, aarch64)"
|
||||
es_ES: "Arquitectura de CPU objetivo (ej. x86_64, aarch64)"
|
||||
fr_FR: "Architecture CPU cible (ex. x86_64, aarch64)"
|
||||
pl_PL: "Docelowa architektura CPU (np. x86_64, aarch64)"
|
||||
|
||||
help.arg.architecture-mask:
|
||||
en_US: "Filter by CPU architecture"
|
||||
de_DE: "Nach CPU-Architektur filtern"
|
||||
@@ -5275,6 +5289,13 @@ about.restart-service:
|
||||
fr_FR: "Redémarrer un service"
|
||||
pl_PL: "Uruchom ponownie usługę"
|
||||
|
||||
about.restart-tunnel:
|
||||
en_US: "Reboot the tunnel server"
|
||||
de_DE: "Den Tunnel-Server neu starten"
|
||||
es_ES: "Reiniciar el servidor del túnel"
|
||||
fr_FR: "Redémarrer le serveur tunnel"
|
||||
pl_PL: "Uruchom ponownie serwer tunelu"
|
||||
|
||||
about.restore-packages-from-backup:
|
||||
en_US: "Restore packages from backup"
|
||||
de_DE: "Pakete aus Backup wiederherstellen"
|
||||
|
||||
13
core/man/start-cli/start-cli-auth-get-pubkey.1
Normal file
13
core/man/start-cli/start-cli-auth-get-pubkey.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth-get-pubkey 1 "get-pubkey "
|
||||
.SH NAME
|
||||
start\-cli\-auth\-get\-pubkey \- Get the public key from the server
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth get\-pubkey\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Get the public key from the server
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-auth-login.1
Normal file
13
core/man/start-cli/start-cli-auth-login.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth-login 1 "login "
|
||||
.SH NAME
|
||||
start\-cli\-auth\-login \- Login to a new auth session
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth login\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Login to a new auth session
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
16
core/man/start-cli/start-cli-auth-logout.1
Normal file
16
core/man/start-cli/start-cli-auth-logout.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth-logout 1 "logout "
|
||||
.SH NAME
|
||||
start\-cli\-auth\-logout \- Logout from current auth session
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth logout\fR [\fB\-h\fR|\fB\-\-help\fR] <\fISESSION\fR>
|
||||
.SH DESCRIPTION
|
||||
Logout from current auth session
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fISESSION\fR>
|
||||
|
||||
13
core/man/start-cli/start-cli-auth-reset-password.1
Normal file
13
core/man/start-cli/start-cli-auth-reset-password.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth-reset-password 1 "reset-password "
|
||||
.SH NAME
|
||||
start\-cli\-auth\-reset\-password \- Reset the password
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth reset\-password\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Reset the password
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
16
core/man/start-cli/start-cli-auth-session-kill.1
Normal file
16
core/man/start-cli/start-cli-auth-session-kill.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth-session-kill 1 "kill "
|
||||
.SH NAME
|
||||
start\-cli\-auth\-session\-kill \- Terminate auth sessions
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth session kill\fR [\fB\-h\fR|\fB\-\-help\fR] [\fIIDS\fR]
|
||||
.SH DESCRIPTION
|
||||
Terminate auth sessions
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fIIDS\fR]
|
||||
Session identifiers
|
||||
16
core/man/start-cli/start-cli-auth-session-list.1
Normal file
16
core/man/start-cli/start-cli-auth-session-list.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth-session-list 1 "list "
|
||||
.SH NAME
|
||||
start\-cli\-auth\-session\-list \- Display all auth sessions
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth session list\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Display all auth sessions
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
20
core/man/start-cli/start-cli-auth-session.1
Normal file
20
core/man/start-cli/start-cli-auth-session.1
Normal file
@@ -0,0 +1,20 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth-session 1 "session "
|
||||
.SH NAME
|
||||
start\-cli\-auth\-session \- List or kill auth sessions
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth session\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
List or kill auth sessions
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-auth\-session\-kill(1)
|
||||
Terminate auth sessions
|
||||
.TP
|
||||
start\-cli\-auth\-session\-list(1)
|
||||
Display all auth sessions
|
||||
29
core/man/start-cli/start-cli-auth.1
Normal file
29
core/man/start-cli/start-cli-auth.1
Normal file
@@ -0,0 +1,29 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-auth 1 "auth "
|
||||
.SH NAME
|
||||
start\-cli\-auth \- Commands related to Authentication i.e. login, logout
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli auth\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands related to Authentication i.e. login, logout
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-auth\-get\-pubkey(1)
|
||||
Get the public key from the server
|
||||
.TP
|
||||
start\-cli\-auth\-login(1)
|
||||
Login to a new auth session
|
||||
.TP
|
||||
start\-cli\-auth\-logout(1)
|
||||
Logout from current auth session
|
||||
.TP
|
||||
start\-cli\-auth\-reset\-password(1)
|
||||
Reset the password
|
||||
.TP
|
||||
start\-cli\-auth\-session(1)
|
||||
List or kill auth sessions
|
||||
25
core/man/start-cli/start-cli-backup-create.1
Normal file
25
core/man/start-cli/start-cli-backup-create.1
Normal file
@@ -0,0 +1,25 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-create 1 "create "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-create \- Create a backup for all packages
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup create\fR [\fB\-\-old\-password\fR] [\fB\-\-package\-ids\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fITARGET_ID\fR> <\fIPASSWORD\fR>
|
||||
.SH DESCRIPTION
|
||||
Create a backup for all packages
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-old\-password\fR \fI<OLD_PASSWORD>\fR
|
||||
Previous backup password
|
||||
.TP
|
||||
\fB\-\-package\-ids\fR \fI<PACKAGE_IDS>\fR
|
||||
Package IDs to include in backup
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fITARGET_ID\fR>
|
||||
Backup target identifier
|
||||
.TP
|
||||
<\fIPASSWORD\fR>
|
||||
Password for backup encryption
|
||||
25
core/man/start-cli/start-cli-backup-target-cifs-add.1
Normal file
25
core/man/start-cli/start-cli-backup-target-cifs-add.1
Normal file
@@ -0,0 +1,25 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-cifs-add 1 "add "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-cifs\-add \- Add a new backup target
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target cifs add\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIHOSTNAME\fR> <\fIPATH\fR> <\fIUSERNAME\fR> [\fIPASSWORD\fR]
|
||||
.SH DESCRIPTION
|
||||
Add a new backup target
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIHOSTNAME\fR>
|
||||
CIFS server hostname
|
||||
.TP
|
||||
<\fIPATH\fR>
|
||||
Path on the CIFS share
|
||||
.TP
|
||||
<\fIUSERNAME\fR>
|
||||
CIFS authentication username
|
||||
.TP
|
||||
[\fIPASSWORD\fR]
|
||||
CIFS authentication password
|
||||
16
core/man/start-cli/start-cli-backup-target-cifs-remove.1
Normal file
16
core/man/start-cli/start-cli-backup-target-cifs-remove.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-cifs-remove 1 "remove "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-cifs\-remove \- Remove existing backup target
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target cifs remove\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIID\fR>
|
||||
.SH DESCRIPTION
|
||||
Remove existing backup target
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIID\fR>
|
||||
Backup target identifier
|
||||
28
core/man/start-cli/start-cli-backup-target-cifs-update.1
Normal file
28
core/man/start-cli/start-cli-backup-target-cifs-update.1
Normal file
@@ -0,0 +1,28 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-cifs-update 1 "update "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-cifs\-update \- Update an existing backup target
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target cifs update\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIID\fR> <\fIHOSTNAME\fR> <\fIPATH\fR> <\fIUSERNAME\fR> [\fIPASSWORD\fR]
|
||||
.SH DESCRIPTION
|
||||
Update an existing backup target
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIID\fR>
|
||||
Backup target identifier
|
||||
.TP
|
||||
<\fIHOSTNAME\fR>
|
||||
CIFS server hostname
|
||||
.TP
|
||||
<\fIPATH\fR>
|
||||
Path on the CIFS share
|
||||
.TP
|
||||
<\fIUSERNAME\fR>
|
||||
CIFS authentication username
|
||||
.TP
|
||||
[\fIPASSWORD\fR]
|
||||
CIFS authentication password
|
||||
23
core/man/start-cli/start-cli-backup-target-cifs.1
Normal file
23
core/man/start-cli/start-cli-backup-target-cifs.1
Normal file
@@ -0,0 +1,23 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-cifs 1 "cifs "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-cifs \- Add, remove, or update a backup target
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target cifs\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Add, remove, or update a backup target
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-backup\-target\-cifs\-add(1)
|
||||
Add a new backup target
|
||||
.TP
|
||||
start\-cli\-backup\-target\-cifs\-remove(1)
|
||||
Remove existing backup target
|
||||
.TP
|
||||
start\-cli\-backup\-target\-cifs\-update(1)
|
||||
Update an existing backup target
|
||||
25
core/man/start-cli/start-cli-backup-target-info.1
Normal file
25
core/man/start-cli/start-cli-backup-target-info.1
Normal file
@@ -0,0 +1,25 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-info 1 "info "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-info \- Display backup information for a package
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target info\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fITARGET_ID\fR> <\fISERVER_ID\fR> <\fIPASSWORD\fR>
|
||||
.SH DESCRIPTION
|
||||
Display backup information for a package
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fITARGET_ID\fR>
|
||||
Backup target identifier
|
||||
.TP
|
||||
<\fISERVER_ID\fR>
|
||||
Unique server identifier
|
||||
.TP
|
||||
<\fIPASSWORD\fR>
|
||||
Password for backup encryption
|
||||
16
core/man/start-cli/start-cli-backup-target-list.1
Normal file
16
core/man/start-cli/start-cli-backup-target-list.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-list 1 "list "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-list \- List existing backup targets
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target list\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
List existing backup targets
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
25
core/man/start-cli/start-cli-backup-target-mount.1
Normal file
25
core/man/start-cli/start-cli-backup-target-mount.1
Normal file
@@ -0,0 +1,25 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-mount 1 "mount "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-mount \- Mount a backup target
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target mount\fR [\fB\-\-server\-id\fR] [\fB\-\-allow\-partial\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fITARGET_ID\fR> <\fIPASSWORD\fR>
|
||||
.SH DESCRIPTION
|
||||
Mount a backup target
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-server\-id\fR \fI<SERVER_ID>\fR
|
||||
Unique server identifier
|
||||
.TP
|
||||
\fB\-\-allow\-partial\fR
|
||||
Leave media mounted even if backupfs fails to mount
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fITARGET_ID\fR>
|
||||
Backup target identifier
|
||||
.TP
|
||||
<\fIPASSWORD\fR>
|
||||
Password for backup encryption
|
||||
16
core/man/start-cli/start-cli-backup-target-umount.1
Normal file
16
core/man/start-cli/start-cli-backup-target-umount.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target-umount 1 "umount "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target\-umount \- Unmount a backup target
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target umount\fR [\fB\-h\fR|\fB\-\-help\fR] [\fITARGET_ID\fR]
|
||||
.SH DESCRIPTION
|
||||
Unmount a backup target
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fITARGET_ID\fR]
|
||||
Backup target identifier
|
||||
29
core/man/start-cli/start-cli-backup-target.1
Normal file
29
core/man/start-cli/start-cli-backup-target.1
Normal file
@@ -0,0 +1,29 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup-target 1 "target "
|
||||
.SH NAME
|
||||
start\-cli\-backup\-target \- Commands related to a backup target
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup target\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands related to a backup target
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-backup\-target\-cifs(1)
|
||||
Add, remove, or update a backup target
|
||||
.TP
|
||||
start\-cli\-backup\-target\-info(1)
|
||||
Display backup information for a package
|
||||
.TP
|
||||
start\-cli\-backup\-target\-list(1)
|
||||
List existing backup targets
|
||||
.TP
|
||||
start\-cli\-backup\-target\-mount(1)
|
||||
Mount a backup target
|
||||
.TP
|
||||
start\-cli\-backup\-target\-umount(1)
|
||||
Unmount a backup target
|
||||
20
core/man/start-cli/start-cli-backup.1
Normal file
20
core/man/start-cli/start-cli-backup.1
Normal file
@@ -0,0 +1,20 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-backup 1 "backup "
|
||||
.SH NAME
|
||||
start\-cli\-backup \- Commands related to backup creation and backup targets
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli backup\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands related to backup creation and backup targets
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-backup\-create(1)
|
||||
Create a backup for all packages
|
||||
.TP
|
||||
start\-cli\-backup\-target(1)
|
||||
Commands related to a backup target
|
||||
22
core/man/start-cli/start-cli-db-apply.1
Normal file
22
core/man/start-cli/start-cli-db-apply.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-db-apply 1 "apply "
|
||||
.SH NAME
|
||||
start\-cli\-db\-apply \- Update a database record
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli db apply\fR [\fB\-\-allow\-model\-mismatch\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIEXPR\fR> [\fIPATH\fR]
|
||||
.SH DESCRIPTION
|
||||
Update a database record
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-allow\-model\-mismatch\fR
|
||||
Allow database model mismatch
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIEXPR\fR>
|
||||
Database patch expression to apply
|
||||
.TP
|
||||
[\fIPATH\fR]
|
||||
Path to the database
|
||||
22
core/man/start-cli/start-cli-db-dump.1
Normal file
22
core/man/start-cli/start-cli-db-dump.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-db-dump 1 "dump "
|
||||
.SH NAME
|
||||
start\-cli\-db\-dump \- Filter and query the database
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli db dump\fR [\fB\-p\fR|\fB\-\-include\-private\fR] [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] [\fIPATH\fR]
|
||||
.SH DESCRIPTION
|
||||
Filter and query the database
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-p\fR, \fB\-\-include\-private\fR
|
||||
Include private data in output
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fIPATH\fR]
|
||||
Path to the database
|
||||
22
core/man/start-cli/start-cli-db-put-ui.1
Normal file
22
core/man/start-cli/start-cli-db-put-ui.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-db-put-ui 1 "ui "
|
||||
.SH NAME
|
||||
start\-cli\-db\-put\-ui \- Add path and value to db
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli db put ui\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIPOINTER\fR> <\fIVALUE\fR>
|
||||
.SH DESCRIPTION
|
||||
Add path and value to db
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIPOINTER\fR>
|
||||
JSON pointer to specific value
|
||||
.TP
|
||||
<\fIVALUE\fR>
|
||||
JSON value to set
|
||||
17
core/man/start-cli/start-cli-db-put.1
Normal file
17
core/man/start-cli/start-cli-db-put.1
Normal file
@@ -0,0 +1,17 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-db-put 1 "put "
|
||||
.SH NAME
|
||||
start\-cli\-db\-put \- Command for adding UI record to db
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli db put\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Command for adding UI record to db
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-db\-put\-ui(1)
|
||||
Add path and value to db
|
||||
23
core/man/start-cli/start-cli-db.1
Normal file
23
core/man/start-cli/start-cli-db.1
Normal file
@@ -0,0 +1,23 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-db 1 "db "
|
||||
.SH NAME
|
||||
start\-cli\-db \- Commands to interact with the db i.e. dump, put, apply
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli db\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands to interact with the db i.e. dump, put, apply
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-db\-apply(1)
|
||||
Update a database record
|
||||
.TP
|
||||
start\-cli\-db\-dump(1)
|
||||
Filter and query the database
|
||||
.TP
|
||||
start\-cli\-db\-put(1)
|
||||
Command for adding UI record to db
|
||||
13
core/man/start-cli/start-cli-diagnostic-disk-forget.1
Normal file
13
core/man/start-cli/start-cli-diagnostic-disk-forget.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-disk-forget 1 "forget "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-disk\-forget \- Remove disk filesystem
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic disk forget\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Remove disk filesystem
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-diagnostic-disk-repair.1
Normal file
13
core/man/start-cli/start-cli-diagnostic-disk-repair.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-disk-repair 1 "repair "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-disk\-repair \- Repair disk corruption
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic disk repair\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Repair disk corruption
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
20
core/man/start-cli/start-cli-diagnostic-disk.1
Normal file
20
core/man/start-cli/start-cli-diagnostic-disk.1
Normal file
@@ -0,0 +1,20 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-disk 1 "disk "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-disk \- Command to remove disk from filesystem
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic disk\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Command to remove disk from filesystem
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-diagnostic\-disk\-forget(1)
|
||||
Remove disk filesystem
|
||||
.TP
|
||||
start\-cli\-diagnostic\-disk\-repair(1)
|
||||
Repair disk corruption
|
||||
13
core/man/start-cli/start-cli-diagnostic-error.1
Normal file
13
core/man/start-cli/start-cli-diagnostic-error.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-error 1 "error "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-error \- Display diagnostic error
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic error\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Display diagnostic error
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
28
core/man/start-cli/start-cli-diagnostic-kernel-logs.1
Normal file
28
core/man/start-cli/start-cli-diagnostic-kernel-logs.1
Normal file
@@ -0,0 +1,28 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-kernel-logs 1 "kernel-logs "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-kernel\-logs \- Display kernel logs
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic kernel\-logs\fR [\fB\-l\fR|\fB\-\-limit\fR] [\fB\-c\fR|\fB\-\-cursor\fR] [\fB\-b\fR|\fB\-\-boot\fR] [\fB\-B\fR|\fB\-\-before\fR] [\fB\-f\fR|\fB\-\-follow\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Display kernel logs
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-l\fR, \fB\-\-limit\fR \fI<LIMIT>\fR
|
||||
Maximum number of log entries
|
||||
.TP
|
||||
\fB\-c\fR, \fB\-\-cursor\fR \fI<CURSOR>\fR
|
||||
Start from this cursor position
|
||||
.TP
|
||||
\fB\-b\fR, \fB\-\-boot\fR \fI<BOOT>\fR
|
||||
Filter logs by boot ID
|
||||
.TP
|
||||
\fB\-B\fR, \fB\-\-before\fR
|
||||
Show logs before the cursor position
|
||||
.TP
|
||||
\fB\-f\fR, \fB\-\-follow\fR
|
||||
Follow log output in real\-time
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
28
core/man/start-cli/start-cli-diagnostic-logs.1
Normal file
28
core/man/start-cli/start-cli-diagnostic-logs.1
Normal file
@@ -0,0 +1,28 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-logs 1 "logs "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-logs \- Display OS logs
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic logs\fR [\fB\-l\fR|\fB\-\-limit\fR] [\fB\-c\fR|\fB\-\-cursor\fR] [\fB\-b\fR|\fB\-\-boot\fR] [\fB\-B\fR|\fB\-\-before\fR] [\fB\-f\fR|\fB\-\-follow\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Display OS logs
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-l\fR, \fB\-\-limit\fR \fI<LIMIT>\fR
|
||||
Maximum number of log entries
|
||||
.TP
|
||||
\fB\-c\fR, \fB\-\-cursor\fR \fI<CURSOR>\fR
|
||||
Start from this cursor position
|
||||
.TP
|
||||
\fB\-b\fR, \fB\-\-boot\fR \fI<BOOT>\fR
|
||||
Filter logs by boot ID
|
||||
.TP
|
||||
\fB\-B\fR, \fB\-\-before\fR
|
||||
Show logs before the cursor position
|
||||
.TP
|
||||
\fB\-f\fR, \fB\-\-follow\fR
|
||||
Follow log output in real\-time
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-diagnostic-rebuild.1
Normal file
13
core/man/start-cli/start-cli-diagnostic-rebuild.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-rebuild 1 "rebuild "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-rebuild \- Teardown and rebuild containers
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic rebuild\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Teardown and rebuild containers
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-diagnostic-restart.1
Normal file
13
core/man/start-cli/start-cli-diagnostic-restart.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic-restart 1 "restart "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic\-restart \- Restart the server
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic restart\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Restart the server
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
32
core/man/start-cli/start-cli-diagnostic.1
Normal file
32
core/man/start-cli/start-cli-diagnostic.1
Normal file
@@ -0,0 +1,32 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-diagnostic 1 "diagnostic "
|
||||
.SH NAME
|
||||
start\-cli\-diagnostic \- Commands to display logs, restart the server, etc
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli diagnostic\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands to display logs, restart the server, etc
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-diagnostic\-disk(1)
|
||||
Command to remove disk from filesystem
|
||||
.TP
|
||||
start\-cli\-diagnostic\-error(1)
|
||||
Display diagnostic error
|
||||
.TP
|
||||
start\-cli\-diagnostic\-kernel\-logs(1)
|
||||
Display kernel logs
|
||||
.TP
|
||||
start\-cli\-diagnostic\-logs(1)
|
||||
Display OS logs
|
||||
.TP
|
||||
start\-cli\-diagnostic\-rebuild(1)
|
||||
Teardown and rebuild containers
|
||||
.TP
|
||||
start\-cli\-diagnostic\-restart(1)
|
||||
Restart the server
|
||||
16
core/man/start-cli/start-cli-disk-list.1
Normal file
16
core/man/start-cli/start-cli-disk-list.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-disk-list 1 "list "
|
||||
.SH NAME
|
||||
start\-cli\-disk\-list \- List disk information
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli disk list\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
List disk information
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-disk-repair.1
Normal file
13
core/man/start-cli/start-cli-disk-repair.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-disk-repair 1 "repair "
|
||||
.SH NAME
|
||||
start\-cli\-disk\-repair \- Repair disk corruption
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli disk repair\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Repair disk corruption
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
20
core/man/start-cli/start-cli-disk.1
Normal file
20
core/man/start-cli/start-cli-disk.1
Normal file
@@ -0,0 +1,20 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-disk 1 "disk "
|
||||
.SH NAME
|
||||
start\-cli\-disk \- Commands for listing disk info and repairing
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli disk\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands for listing disk info and repairing
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-disk\-list(1)
|
||||
List disk information
|
||||
.TP
|
||||
start\-cli\-disk\-repair(1)
|
||||
Repair disk corruption
|
||||
16
core/man/start-cli/start-cli-echo.1
Normal file
16
core/man/start-cli/start-cli-echo.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-echo 1 "echo "
|
||||
.SH NAME
|
||||
start\-cli\-echo \- Echo a message back
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli echo\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIMESSAGE\fR>
|
||||
.SH DESCRIPTION
|
||||
Echo a message back
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIMESSAGE\fR>
|
||||
Message to echo back
|
||||
32
core/man/start-cli/start-cli-flash-os.1
Normal file
32
core/man/start-cli/start-cli-flash-os.1
Normal file
@@ -0,0 +1,32 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-flash-os 1 "flash-os "
|
||||
.SH NAME
|
||||
start\-cli\-flash\-os \- Flash StartOS to a drive
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli flash\-os\fR [\fB\-\-efi\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fISQUASHFS\fR> <\fIDISK\fR>
|
||||
.SH DESCRIPTION
|
||||
Flash StartOS to a drive
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-efi\fR \fI<EFI>\fR
|
||||
Use EFI boot mode
|
||||
.br
|
||||
|
||||
.br
|
||||
\fIPossible values:\fR
|
||||
.RS 14
|
||||
.IP \(bu 2
|
||||
true
|
||||
.IP \(bu 2
|
||||
false
|
||||
.RE
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fISQUASHFS\fR>
|
||||
Path to squashfs image file
|
||||
.TP
|
||||
<\fIDISK\fR>
|
||||
Target disk for installation
|
||||
13
core/man/start-cli/start-cli-git-info.1
Normal file
13
core/man/start-cli/start-cli-git-info.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-git-info 1 "git-info "
|
||||
.SH NAME
|
||||
start\-cli\-git\-info \- Display the git hash of this build
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli git\-info\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Display the git hash of this build
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
28
core/man/start-cli/start-cli-init-kernel-logs.1
Normal file
28
core/man/start-cli/start-cli-init-kernel-logs.1
Normal file
@@ -0,0 +1,28 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-init-kernel-logs 1 "kernel-logs "
|
||||
.SH NAME
|
||||
start\-cli\-init\-kernel\-logs \- Display kernel logs
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli init kernel\-logs\fR [\fB\-l\fR|\fB\-\-limit\fR] [\fB\-c\fR|\fB\-\-cursor\fR] [\fB\-b\fR|\fB\-\-boot\fR] [\fB\-B\fR|\fB\-\-before\fR] [\fB\-f\fR|\fB\-\-follow\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Display kernel logs
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-l\fR, \fB\-\-limit\fR \fI<LIMIT>\fR
|
||||
Maximum number of log entries
|
||||
.TP
|
||||
\fB\-c\fR, \fB\-\-cursor\fR \fI<CURSOR>\fR
|
||||
Start from this cursor position
|
||||
.TP
|
||||
\fB\-b\fR, \fB\-\-boot\fR \fI<BOOT>\fR
|
||||
Filter logs by boot ID
|
||||
.TP
|
||||
\fB\-B\fR, \fB\-\-before\fR
|
||||
Show logs before the cursor position
|
||||
.TP
|
||||
\fB\-f\fR, \fB\-\-follow\fR
|
||||
Follow log output in real\-time
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-init-key.1
Normal file
13
core/man/start-cli/start-cli-init-key.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-init-key 1 "init-key "
|
||||
.SH NAME
|
||||
start\-cli\-init\-key \- Create a new developer key
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli init\-key\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Create a new developer key
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
28
core/man/start-cli/start-cli-init-logs.1
Normal file
28
core/man/start-cli/start-cli-init-logs.1
Normal file
@@ -0,0 +1,28 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-init-logs 1 "logs "
|
||||
.SH NAME
|
||||
start\-cli\-init\-logs \- Display OS logs
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli init logs\fR [\fB\-l\fR|\fB\-\-limit\fR] [\fB\-c\fR|\fB\-\-cursor\fR] [\fB\-b\fR|\fB\-\-boot\fR] [\fB\-B\fR|\fB\-\-before\fR] [\fB\-f\fR|\fB\-\-follow\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Display OS logs
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-l\fR, \fB\-\-limit\fR \fI<LIMIT>\fR
|
||||
Maximum number of log entries
|
||||
.TP
|
||||
\fB\-c\fR, \fB\-\-cursor\fR \fI<CURSOR>\fR
|
||||
Start from this cursor position
|
||||
.TP
|
||||
\fB\-b\fR, \fB\-\-boot\fR \fI<BOOT>\fR
|
||||
Filter logs by boot ID
|
||||
.TP
|
||||
\fB\-B\fR, \fB\-\-before\fR
|
||||
Show logs before the cursor position
|
||||
.TP
|
||||
\fB\-f\fR, \fB\-\-follow\fR
|
||||
Follow log output in real\-time
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-init-subscribe.1
Normal file
13
core/man/start-cli/start-cli-init-subscribe.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-init-subscribe 1 "subscribe "
|
||||
.SH NAME
|
||||
start\-cli\-init\-subscribe \- Get initialization progress
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli init subscribe\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Get initialization progress
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
23
core/man/start-cli/start-cli-init.1
Normal file
23
core/man/start-cli/start-cli-init.1
Normal file
@@ -0,0 +1,23 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-init 1 "init "
|
||||
.SH NAME
|
||||
start\-cli\-init \- Commands for initialization
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli init\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands for initialization
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-init\-kernel\-logs(1)
|
||||
Display kernel logs
|
||||
.TP
|
||||
start\-cli\-init\-logs(1)
|
||||
Display OS logs
|
||||
.TP
|
||||
start\-cli\-init\-subscribe(1)
|
||||
Get initialization progress
|
||||
13
core/man/start-cli/start-cli-kiosk-disable.1
Normal file
13
core/man/start-cli/start-cli-kiosk-disable.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-kiosk-disable 1 "disable "
|
||||
.SH NAME
|
||||
start\-cli\-kiosk\-disable \- Disable kiosk mode
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli kiosk disable\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Disable kiosk mode
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
13
core/man/start-cli/start-cli-kiosk-enable.1
Normal file
13
core/man/start-cli/start-cli-kiosk-enable.1
Normal file
@@ -0,0 +1,13 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-kiosk-enable 1 "enable "
|
||||
.SH NAME
|
||||
start\-cli\-kiosk\-enable \- Enable kiosk mode
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli kiosk enable\fR [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Enable kiosk mode
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
20
core/man/start-cli/start-cli-kiosk.1
Normal file
20
core/man/start-cli/start-cli-kiosk.1
Normal file
@@ -0,0 +1,20 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-kiosk 1 "kiosk "
|
||||
.SH NAME
|
||||
start\-cli\-kiosk \- Commands for kiosk mode
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli kiosk\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands for kiosk mode
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-kiosk\-disable(1)
|
||||
Disable kiosk mode
|
||||
.TP
|
||||
start\-cli\-kiosk\-enable(1)
|
||||
Enable kiosk mode
|
||||
19
core/man/start-cli/start-cli-net-acme-init.1
Normal file
19
core/man/start-cli/start-cli-net-acme-init.1
Normal file
@@ -0,0 +1,19 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-acme-init 1 "init "
|
||||
.SH NAME
|
||||
start\-cli\-net\-acme\-init \- Setup ACME certificate acquisition
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net acme init\fR <\fB\-\-provider\fR> [\fB\-\-contact\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Setup ACME certificate acquisition
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-provider\fR \fI<PROVIDER>\fR
|
||||
ACME provider identifier or url
|
||||
.TP
|
||||
\fB\-\-contact\fR \fI<CONTACT>\fR
|
||||
Contact email for ACME certificate authority
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
16
core/man/start-cli/start-cli-net-acme-remove.1
Normal file
16
core/man/start-cli/start-cli-net-acme-remove.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-acme-remove 1 "remove "
|
||||
.SH NAME
|
||||
start\-cli\-net\-acme\-remove \- Remove ACME certificate acquisition configuration
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net acme remove\fR <\fB\-\-provider\fR> [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Remove ACME certificate acquisition configuration
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-provider\fR \fI<PROVIDER>\fR
|
||||
ACME provider identifier or url
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
20
core/man/start-cli/start-cli-net-acme.1
Normal file
20
core/man/start-cli/start-cli-net-acme.1
Normal file
@@ -0,0 +1,20 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-acme 1 "acme "
|
||||
.SH NAME
|
||||
start\-cli\-net\-acme \- Setup ACME certificate
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net acme\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Setup ACME certificate
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-net\-acme\-init(1)
|
||||
Setup ACME certificate acquisition
|
||||
.TP
|
||||
start\-cli\-net\-acme\-remove(1)
|
||||
Remove ACME certificate acquisition configuration
|
||||
16
core/man/start-cli/start-cli-net-dns-dump-table.1
Normal file
16
core/man/start-cli/start-cli-net-dns-dump-table.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-dns-dump-table 1 "dump-table "
|
||||
.SH NAME
|
||||
start\-cli\-net\-dns\-dump\-table \- Dump address resolution table
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net dns dump\-table\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Dump address resolution table
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
19
core/man/start-cli/start-cli-net-dns-query.1
Normal file
19
core/man/start-cli/start-cli-net-dns-query.1
Normal file
@@ -0,0 +1,19 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-dns-query 1 "query "
|
||||
.SH NAME
|
||||
start\-cli\-net\-dns\-query \- Test DNS configuration for a domain
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net dns query\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIFQDN\fR>
|
||||
.SH DESCRIPTION
|
||||
Test DNS configuration for a domain
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIFQDN\fR>
|
||||
Fully qualified domain name
|
||||
16
core/man/start-cli/start-cli-net-dns-set-static.1
Normal file
16
core/man/start-cli/start-cli-net-dns-set-static.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-dns-set-static 1 "set-static "
|
||||
.SH NAME
|
||||
start\-cli\-net\-dns\-set\-static \- Set static DNS servers
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net dns set\-static\fR [\fB\-h\fR|\fB\-\-help\fR] [\fISERVERS\fR]
|
||||
.SH DESCRIPTION
|
||||
Set static DNS servers
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fISERVERS\fR]
|
||||
DNS servers to use
|
||||
23
core/man/start-cli/start-cli-net-dns.1
Normal file
23
core/man/start-cli/start-cli-net-dns.1
Normal file
@@ -0,0 +1,23 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-dns 1 "dns "
|
||||
.SH NAME
|
||||
start\-cli\-net\-dns \- Manage and query DNS
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net dns\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Manage and query DNS
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-net\-dns\-dump\-table(1)
|
||||
Dump address resolution table
|
||||
.TP
|
||||
start\-cli\-net\-dns\-query(1)
|
||||
Test DNS configuration for a domain
|
||||
.TP
|
||||
start\-cli\-net\-dns\-set\-static(1)
|
||||
Set static DNS servers
|
||||
15
core/man/start-cli/start-cli-net-forward-dump-table.1
Normal file
15
core/man/start-cli/start-cli-net-forward-dump-table.1
Normal file
@@ -0,0 +1,15 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-forward-dump-table 1 "dump-table "
|
||||
.SH NAME
|
||||
start\-cli\-net\-forward\-dump\-table
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net forward dump\-table\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
16
core/man/start-cli/start-cli-net-forward.1
Normal file
16
core/man/start-cli/start-cli-net-forward.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-forward 1 "forward "
|
||||
.SH NAME
|
||||
start\-cli\-net\-forward \- Manage port forwards
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net forward\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Manage port forwards
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-net\-forward\-dump\-table(1)
|
||||
19
core/man/start-cli/start-cli-net-gateway-check-dns.1
Normal file
19
core/man/start-cli/start-cli-net-gateway-check-dns.1
Normal file
@@ -0,0 +1,19 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-gateway-check-dns 1 "check-dns "
|
||||
.SH NAME
|
||||
start\-cli\-net\-gateway\-check\-dns \- Check DNS configuration for a gateway
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net gateway check\-dns\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIGATEWAY\fR>
|
||||
.SH DESCRIPTION
|
||||
Check DNS configuration for a gateway
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIGATEWAY\fR>
|
||||
Gateway identifier
|
||||
22
core/man/start-cli/start-cli-net-gateway-check-port.1
Normal file
22
core/man/start-cli/start-cli-net-gateway-check-port.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-gateway-check-port 1 "check-port "
|
||||
.SH NAME
|
||||
start\-cli\-net\-gateway\-check\-port \- about.check\-port\-reachability
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net gateway check\-port\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIPORT\fR> <\fIGATEWAY\fR>
|
||||
.SH DESCRIPTION
|
||||
about.check\-port\-reachability
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIPORT\fR>
|
||||
help.arg.port
|
||||
.TP
|
||||
<\fIGATEWAY\fR>
|
||||
Gateway identifier
|
||||
16
core/man/start-cli/start-cli-net-gateway-forget.1
Normal file
16
core/man/start-cli/start-cli-net-gateway-forget.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-gateway-forget 1 "forget "
|
||||
.SH NAME
|
||||
start\-cli\-net\-gateway\-forget \- Forget a disconnected gateway
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net gateway forget\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIGATEWAY\fR>
|
||||
.SH DESCRIPTION
|
||||
Forget a disconnected gateway
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIGATEWAY\fR>
|
||||
Gateway identifier
|
||||
16
core/man/start-cli/start-cli-net-gateway-list.1
Normal file
16
core/man/start-cli/start-cli-net-gateway-list.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-gateway-list 1 "list "
|
||||
.SH NAME
|
||||
start\-cli\-net\-gateway\-list \- Show gateways StartOS can listen on
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net gateway list\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
Show gateways StartOS can listen on
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-gateway-set-default-outbound 1 "set-default-outbound "
|
||||
.SH NAME
|
||||
start\-cli\-net\-gateway\-set\-default\-outbound \- about.set\-default\-outbound\-gateway
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net gateway set\-default\-outbound\fR [\fB\-h\fR|\fB\-\-help\fR] [\fIGATEWAY\fR]
|
||||
.SH DESCRIPTION
|
||||
about.set\-default\-outbound\-gateway
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fIGATEWAY\fR]
|
||||
Gateway identifier
|
||||
19
core/man/start-cli/start-cli-net-gateway-set-name.1
Normal file
19
core/man/start-cli/start-cli-net-gateway-set-name.1
Normal file
@@ -0,0 +1,19 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-gateway-set-name 1 "set-name "
|
||||
.SH NAME
|
||||
start\-cli\-net\-gateway\-set\-name \- Rename a gateway
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net gateway set\-name\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIID\fR> <\fINAME\fR>
|
||||
.SH DESCRIPTION
|
||||
Rename a gateway
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIID\fR>
|
||||
Gateway identifier
|
||||
.TP
|
||||
<\fINAME\fR>
|
||||
Name of the gateway
|
||||
32
core/man/start-cli/start-cli-net-gateway.1
Normal file
32
core/man/start-cli/start-cli-net-gateway.1
Normal file
@@ -0,0 +1,32 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-gateway 1 "gateway "
|
||||
.SH NAME
|
||||
start\-cli\-net\-gateway \- View and edit gateway configurations
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net gateway\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
View and edit gateway configurations
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-net\-gateway\-check\-dns(1)
|
||||
Check DNS configuration for a gateway
|
||||
.TP
|
||||
start\-cli\-net\-gateway\-check\-port(1)
|
||||
about.check\-port\-reachability
|
||||
.TP
|
||||
start\-cli\-net\-gateway\-forget(1)
|
||||
Forget a disconnected gateway
|
||||
.TP
|
||||
start\-cli\-net\-gateway\-list(1)
|
||||
Show gateways StartOS can listen on
|
||||
.TP
|
||||
start\-cli\-net\-gateway\-set\-default\-outbound(1)
|
||||
about.set\-default\-outbound\-gateway
|
||||
.TP
|
||||
start\-cli\-net\-gateway\-set\-name(1)
|
||||
Rename a gateway
|
||||
35
core/man/start-cli/start-cli-net-tunnel-add.1
Normal file
35
core/man/start-cli/start-cli-net-tunnel-add.1
Normal file
@@ -0,0 +1,35 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-tunnel-add 1 "add "
|
||||
.SH NAME
|
||||
start\-cli\-net\-tunnel\-add \- Add a new tunnel
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net tunnel add\fR [\fB\-\-set\-as\-default\-outbound\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fINAME\fR> <\fICONFIG\fR> [\fIGATEWAY_TYPE\fR]
|
||||
.SH DESCRIPTION
|
||||
Add a new tunnel
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-set\-as\-default\-outbound\fR
|
||||
help.arg.set\-as\-default\-outbound
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fINAME\fR>
|
||||
Tunnel name
|
||||
.TP
|
||||
<\fICONFIG\fR>
|
||||
WireGuard configuration
|
||||
.TP
|
||||
[\fIGATEWAY_TYPE\fR]
|
||||
help.arg.gateway\-type
|
||||
.br
|
||||
|
||||
.br
|
||||
\fIPossible values:\fR
|
||||
.RS 14
|
||||
.IP \(bu 2
|
||||
inbound\-outbound
|
||||
.IP \(bu 2
|
||||
outbound\-only
|
||||
.RE
|
||||
16
core/man/start-cli/start-cli-net-tunnel-remove.1
Normal file
16
core/man/start-cli/start-cli-net-tunnel-remove.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-tunnel-remove 1 "remove "
|
||||
.SH NAME
|
||||
start\-cli\-net\-tunnel\-remove \- Remove a tunnel
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net tunnel remove\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIID\fR>
|
||||
.SH DESCRIPTION
|
||||
Remove a tunnel
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIID\fR>
|
||||
Gateway identifier
|
||||
20
core/man/start-cli/start-cli-net-tunnel.1
Normal file
20
core/man/start-cli/start-cli-net-tunnel.1
Normal file
@@ -0,0 +1,20 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-tunnel 1 "tunnel "
|
||||
.SH NAME
|
||||
start\-cli\-net\-tunnel \- Manage tunnels
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net tunnel\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Manage tunnels
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-net\-tunnel\-add(1)
|
||||
Add a new tunnel
|
||||
.TP
|
||||
start\-cli\-net\-tunnel\-remove(1)
|
||||
Remove a tunnel
|
||||
27
core/man/start-cli/start-cli-net-vhost-add-passthrough.1
Normal file
27
core/man/start-cli/start-cli-net-vhost-add-passthrough.1
Normal file
@@ -0,0 +1,27 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-vhost-add-passthrough 1 "add-passthrough "
|
||||
.SH NAME
|
||||
start\-cli\-net\-vhost\-add\-passthrough
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net vhost add\-passthrough\fR <\fB\-\-hostname\fR> <\fB\-\-listen\-port\fR> <\fB\-\-backend\fR> [\fB\-\-public\-gateway\fR] [\fB\-\-private\-ip\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-hostname\fR \fI<HOSTNAME>\fR
|
||||
|
||||
.TP
|
||||
\fB\-\-listen\-port\fR \fI<LISTEN_PORT>\fR
|
||||
|
||||
.TP
|
||||
\fB\-\-backend\fR \fI<BACKEND>\fR
|
||||
|
||||
.TP
|
||||
\fB\-\-public\-gateway\fR \fI<PUBLIC_GATEWAY>\fR
|
||||
|
||||
.TP
|
||||
\fB\-\-private\-ip\fR \fI<PRIVATE_IP>\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
15
core/man/start-cli/start-cli-net-vhost-dump-table.1
Normal file
15
core/man/start-cli/start-cli-net-vhost-dump-table.1
Normal file
@@ -0,0 +1,15 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-vhost-dump-table 1 "dump-table "
|
||||
.SH NAME
|
||||
start\-cli\-net\-vhost\-dump\-table
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net vhost dump\-table\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
15
core/man/start-cli/start-cli-net-vhost-list-passthrough.1
Normal file
15
core/man/start-cli/start-cli-net-vhost-list-passthrough.1
Normal file
@@ -0,0 +1,15 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-vhost-list-passthrough 1 "list-passthrough "
|
||||
.SH NAME
|
||||
start\-cli\-net\-vhost\-list\-passthrough
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net vhost list\-passthrough\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
18
core/man/start-cli/start-cli-net-vhost-remove-passthrough.1
Normal file
18
core/man/start-cli/start-cli-net-vhost-remove-passthrough.1
Normal file
@@ -0,0 +1,18 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-vhost-remove-passthrough 1 "remove-passthrough "
|
||||
.SH NAME
|
||||
start\-cli\-net\-vhost\-remove\-passthrough
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net vhost remove\-passthrough\fR <\fB\-\-hostname\fR> <\fB\-\-listen\-port\fR> [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-hostname\fR \fI<HOSTNAME>\fR
|
||||
|
||||
.TP
|
||||
\fB\-\-listen\-port\fR \fI<LISTEN_PORT>\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
22
core/man/start-cli/start-cli-net-vhost.1
Normal file
22
core/man/start-cli/start-cli-net-vhost.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net-vhost 1 "vhost "
|
||||
.SH NAME
|
||||
start\-cli\-net\-vhost \- Manage SSL vhost proxy
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net vhost\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Manage SSL vhost proxy
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-net\-vhost\-add\-passthrough(1)
|
||||
.TP
|
||||
start\-cli\-net\-vhost\-dump\-table(1)
|
||||
.TP
|
||||
start\-cli\-net\-vhost\-list\-passthrough(1)
|
||||
.TP
|
||||
start\-cli\-net\-vhost\-remove\-passthrough(1)
|
||||
32
core/man/start-cli/start-cli-net.1
Normal file
32
core/man/start-cli/start-cli-net.1
Normal file
@@ -0,0 +1,32 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-net 1 "net "
|
||||
.SH NAME
|
||||
start\-cli\-net \- Network commands
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli net\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Network commands
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-net\-acme(1)
|
||||
Setup ACME certificate
|
||||
.TP
|
||||
start\-cli\-net\-dns(1)
|
||||
Manage and query DNS
|
||||
.TP
|
||||
start\-cli\-net\-forward(1)
|
||||
Manage port forwards
|
||||
.TP
|
||||
start\-cli\-net\-gateway(1)
|
||||
View and edit gateway configurations
|
||||
.TP
|
||||
start\-cli\-net\-tunnel(1)
|
||||
Manage tunnels
|
||||
.TP
|
||||
start\-cli\-net\-vhost(1)
|
||||
Manage SSL vhost proxy
|
||||
25
core/man/start-cli/start-cli-notification-create.1
Normal file
25
core/man/start-cli/start-cli-notification-create.1
Normal file
@@ -0,0 +1,25 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification-create 1 "create "
|
||||
.SH NAME
|
||||
start\-cli\-notification\-create \- Persist a new notification
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification create\fR [\fB\-p\fR|\fB\-\-package\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fILEVEL\fR> <\fITITLE\fR> <\fIMESSAGE\fR>
|
||||
.SH DESCRIPTION
|
||||
Persist a new notification
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-p\fR, \fB\-\-package\fR \fI<PACKAGE>\fR
|
||||
Package identifier
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fILEVEL\fR>
|
||||
Notification severity level
|
||||
.TP
|
||||
<\fITITLE\fR>
|
||||
Notification title
|
||||
.TP
|
||||
<\fIMESSAGE\fR>
|
||||
Notification message content
|
||||
22
core/man/start-cli/start-cli-notification-list.1
Normal file
22
core/man/start-cli/start-cli-notification-list.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification-list 1 "list "
|
||||
.SH NAME
|
||||
start\-cli\-notification\-list \- List notifications
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification list\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] [\fIBEFORE\fR] [\fILIMIT\fR]
|
||||
.SH DESCRIPTION
|
||||
List notifications
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fIBEFORE\fR]
|
||||
Get notifications before this ID
|
||||
.TP
|
||||
[\fILIMIT\fR]
|
||||
Maximum number of notifications to return
|
||||
16
core/man/start-cli/start-cli-notification-mark-seen-before.1
Normal file
16
core/man/start-cli/start-cli-notification-mark-seen-before.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification-mark-seen-before 1 "mark-seen-before "
|
||||
.SH NAME
|
||||
start\-cli\-notification\-mark\-seen\-before \- Mark notifications as seen before a given ID
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification mark\-seen\-before\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIBEFORE\fR>
|
||||
.SH DESCRIPTION
|
||||
Mark notifications as seen before a given ID
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIBEFORE\fR>
|
||||
Get notifications before this ID
|
||||
16
core/man/start-cli/start-cli-notification-mark-seen.1
Normal file
16
core/man/start-cli/start-cli-notification-mark-seen.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification-mark-seen 1 "mark-seen "
|
||||
.SH NAME
|
||||
start\-cli\-notification\-mark\-seen \- Mark notifications as seen
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification mark\-seen\fR [\fB\-h\fR|\fB\-\-help\fR] [\fIIDS\fR]
|
||||
.SH DESCRIPTION
|
||||
Mark notifications as seen
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fIIDS\fR]
|
||||
Notification IDs
|
||||
16
core/man/start-cli/start-cli-notification-mark-unseen.1
Normal file
16
core/man/start-cli/start-cli-notification-mark-unseen.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification-mark-unseen 1 "mark-unseen "
|
||||
.SH NAME
|
||||
start\-cli\-notification\-mark\-unseen \- Mark notifications as unseen
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification mark\-unseen\fR [\fB\-h\fR|\fB\-\-help\fR] [\fIIDS\fR]
|
||||
.SH DESCRIPTION
|
||||
Mark notifications as unseen
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fIIDS\fR]
|
||||
Notification IDs
|
||||
16
core/man/start-cli/start-cli-notification-remove-before.1
Normal file
16
core/man/start-cli/start-cli-notification-remove-before.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification-remove-before 1 "remove-before "
|
||||
.SH NAME
|
||||
start\-cli\-notification\-remove\-before \- Remove notifications before a given ID
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification remove\-before\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIBEFORE\fR>
|
||||
.SH DESCRIPTION
|
||||
Remove notifications before a given ID
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIBEFORE\fR>
|
||||
Get notifications before this ID
|
||||
16
core/man/start-cli/start-cli-notification-remove.1
Normal file
16
core/man/start-cli/start-cli-notification-remove.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification-remove 1 "remove "
|
||||
.SH NAME
|
||||
start\-cli\-notification\-remove \- Remove notification for IDs
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification remove\fR [\fB\-h\fR|\fB\-\-help\fR] [\fIIDS\fR]
|
||||
.SH DESCRIPTION
|
||||
Remove notification for IDs
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
[\fIIDS\fR]
|
||||
Notification IDs
|
||||
35
core/man/start-cli/start-cli-notification.1
Normal file
35
core/man/start-cli/start-cli-notification.1
Normal file
@@ -0,0 +1,35 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-notification 1 "notification "
|
||||
.SH NAME
|
||||
start\-cli\-notification \- Create, delete, or list notifications
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli notification\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Create, delete, or list notifications
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-notification\-create(1)
|
||||
Persist a new notification
|
||||
.TP
|
||||
start\-cli\-notification\-list(1)
|
||||
List notifications
|
||||
.TP
|
||||
start\-cli\-notification\-mark\-seen(1)
|
||||
Mark notifications as seen
|
||||
.TP
|
||||
start\-cli\-notification\-mark\-seen\-before(1)
|
||||
Mark notifications as seen before a given ID
|
||||
.TP
|
||||
start\-cli\-notification\-mark\-unseen(1)
|
||||
Mark notifications as unseen
|
||||
.TP
|
||||
start\-cli\-notification\-remove(1)
|
||||
Remove notification for IDs
|
||||
.TP
|
||||
start\-cli\-notification\-remove\-before(1)
|
||||
Remove notifications before a given ID
|
||||
22
core/man/start-cli/start-cli-package-action-clear-task.1
Normal file
22
core/man/start-cli/start-cli-package-action-clear-task.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-action-clear-task 1 "clear-task "
|
||||
.SH NAME
|
||||
start\-cli\-package\-action\-clear\-task \- Clear a service task
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package action clear\-task\fR [\fB\-\-force\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIPACKAGE_ID\fR> <\fIREPLAY_ID\fR>
|
||||
.SH DESCRIPTION
|
||||
Clear a service task
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-force\fR
|
||||
Force clear the task even if running
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIPACKAGE_ID\fR>
|
||||
Package identifier
|
||||
.TP
|
||||
<\fIREPLAY_ID\fR>
|
||||
Replay identifier for task
|
||||
22
core/man/start-cli/start-cli-package-action-get-input.1
Normal file
22
core/man/start-cli/start-cli-package-action-get-input.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-action-get-input 1 "get-input "
|
||||
.SH NAME
|
||||
start\-cli\-package\-action\-get\-input \- Get action input specification
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package action get\-input\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIPACKAGE_ID\fR> <\fIACTION_ID\fR>
|
||||
.SH DESCRIPTION
|
||||
Get action input specification
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIPACKAGE_ID\fR>
|
||||
Package identifier
|
||||
.TP
|
||||
<\fIACTION_ID\fR>
|
||||
Action identifier
|
||||
25
core/man/start-cli/start-cli-package-action-run.1
Normal file
25
core/man/start-cli/start-cli-package-action-run.1
Normal file
@@ -0,0 +1,25 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-action-run 1 "run "
|
||||
.SH NAME
|
||||
start\-cli\-package\-action\-run \- Run a service action
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package action run\fR [\fB\-\-event\-id\fR] [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIPACKAGE_ID\fR> <\fIACTION_ID\fR>
|
||||
.SH DESCRIPTION
|
||||
Run a service action
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-event\-id\fR \fI<EVENT_ID>\fR
|
||||
Unique event identifier
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIPACKAGE_ID\fR>
|
||||
Package identifier
|
||||
.TP
|
||||
<\fIACTION_ID\fR>
|
||||
Action identifier
|
||||
23
core/man/start-cli/start-cli-package-action.1
Normal file
23
core/man/start-cli/start-cli-package-action.1
Normal file
@@ -0,0 +1,23 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-action 1 "action "
|
||||
.SH NAME
|
||||
start\-cli\-package\-action \- Commands to get action input or run an action
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package action\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands to get action input or run an action
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-package\-action\-clear\-task(1)
|
||||
Clear a service task
|
||||
.TP
|
||||
start\-cli\-package\-action\-get\-input(1)
|
||||
Get action input specification
|
||||
.TP
|
||||
start\-cli\-package\-action\-run(1)
|
||||
Run a service action
|
||||
33
core/man/start-cli/start-cli-package-attach.1
Normal file
33
core/man/start-cli/start-cli-package-attach.1
Normal file
@@ -0,0 +1,33 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-attach 1 "attach "
|
||||
.SH NAME
|
||||
start\-cli\-package\-attach
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package attach\fR [\fB\-\-force\-tty\fR] [\fB\-s\fR|\fB\-\-subcontainer\fR] [\fB\-n\fR|\fB\-\-name\fR] [\fB\-u\fR|\fB\-\-user\fR] [\fB\-i\fR|\fB\-\-image\-id\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIID\fR> [\fICOMMAND\fR]
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-force\-tty\fR
|
||||
Force TTY mode for I/O
|
||||
.TP
|
||||
\fB\-s\fR, \fB\-\-subcontainer\fR \fI<SUBCONTAINER>\fR
|
||||
Name of the subcontainer
|
||||
.TP
|
||||
\fB\-n\fR, \fB\-\-name\fR \fI<NAME>\fR
|
||||
Name of the container
|
||||
.TP
|
||||
\fB\-u\fR, \fB\-\-user\fR \fI<USER>\fR
|
||||
User name to run as
|
||||
.TP
|
||||
\fB\-i\fR, \fB\-\-image\-id\fR \fI<IMAGE_ID>\fR
|
||||
Docker image identifier
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIID\fR>
|
||||
Package identifier
|
||||
.TP
|
||||
[\fICOMMAND\fR]
|
||||
Command to execute in the container
|
||||
22
core/man/start-cli/start-cli-package-backup-restore.1
Normal file
22
core/man/start-cli/start-cli-package-backup-restore.1
Normal file
@@ -0,0 +1,22 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-backup-restore 1 "restore "
|
||||
.SH NAME
|
||||
start\-cli\-package\-backup\-restore \- Restore packages from backup
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package backup restore\fR [\fB\-h\fR|\fB\-\-help\fR] <\fITARGET_ID\fR> <\fIPASSWORD\fR> [\fIIDS\fR]
|
||||
.SH DESCRIPTION
|
||||
Restore packages from backup
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fITARGET_ID\fR>
|
||||
Backup target identifier
|
||||
.TP
|
||||
<\fIPASSWORD\fR>
|
||||
Password for backup encryption
|
||||
.TP
|
||||
[\fIIDS\fR]
|
||||
Package identifiers
|
||||
17
core/man/start-cli/start-cli-package-backup.1
Normal file
17
core/man/start-cli/start-cli-package-backup.1
Normal file
@@ -0,0 +1,17 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-backup 1 "backup "
|
||||
.SH NAME
|
||||
start\-cli\-package\-backup \- Commands for restoring package(s) from backup
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package backup\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
Commands for restoring package(s) from backup
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-package\-backup\-restore(1)
|
||||
Restore packages from backup
|
||||
16
core/man/start-cli/start-cli-package-cancel-install.1
Normal file
16
core/man/start-cli/start-cli-package-cancel-install.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-cancel-install 1 "cancel-install "
|
||||
.SH NAME
|
||||
start\-cli\-package\-cancel\-install \- Cancel an install of a package
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package cancel\-install\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIID\fR>
|
||||
.SH DESCRIPTION
|
||||
Cancel an install of a package
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIID\fR>
|
||||
Package identifier
|
||||
@@ -0,0 +1,19 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-domain-private-add 1 "add "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-domain\-private\-add \- Add a private domain to this host
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address domain private add\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIFQDN\fR> <\fIGATEWAY\fR>
|
||||
.SH DESCRIPTION
|
||||
Add a private domain to this host
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIFQDN\fR>
|
||||
Fully qualified domain name
|
||||
.TP
|
||||
<\fIGATEWAY\fR>
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-domain-private-remove 1 "remove "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-domain\-private\-remove \- Remove private domain from host
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address domain private remove\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIFQDN\fR>
|
||||
.SH DESCRIPTION
|
||||
Remove private domain from host
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIFQDN\fR>
|
||||
Fully qualified domain name
|
||||
@@ -0,0 +1,19 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-domain-private 1 "private "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-domain\-private
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address domain private\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-package\-host\-address\-domain\-private\-add(1)
|
||||
Add a private domain to this host
|
||||
.TP
|
||||
start\-cli\-package\-host\-address\-domain\-private\-remove(1)
|
||||
Remove private domain from host
|
||||
@@ -0,0 +1,25 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-domain-public-add 1 "add "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-domain\-public\-add \- Add a public domain to this host
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address domain public add\fR [\fB\-\-acme\fR] [\fB\-h\fR|\fB\-\-help\fR] <\fIFQDN\fR> <\fIGATEWAY\fR> <\fIINTERNAL_PORT\fR>
|
||||
.SH DESCRIPTION
|
||||
Add a public domain to this host
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-acme\fR \fI<ACME>\fR
|
||||
ACME provider identifier or url
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIFQDN\fR>
|
||||
Fully qualified domain name
|
||||
.TP
|
||||
<\fIGATEWAY\fR>
|
||||
Gateway identifier
|
||||
.TP
|
||||
<\fIINTERNAL_PORT\fR>
|
||||
Internal port number
|
||||
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-domain-public-remove 1 "remove "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-domain\-public\-remove \- Remove public domain from host
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address domain public remove\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIFQDN\fR>
|
||||
.SH DESCRIPTION
|
||||
Remove public domain from host
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.TP
|
||||
<\fIFQDN\fR>
|
||||
Fully qualified domain name
|
||||
@@ -0,0 +1,19 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-domain-public 1 "public "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-domain\-public
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address domain public\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-package\-host\-address\-domain\-public\-add(1)
|
||||
Add a public domain to this host
|
||||
.TP
|
||||
start\-cli\-package\-host\-address\-domain\-public\-remove(1)
|
||||
Remove public domain from host
|
||||
17
core/man/start-cli/start-cli-package-host-address-domain.1
Normal file
17
core/man/start-cli/start-cli-package-host-address-domain.1
Normal file
@@ -0,0 +1,17 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-domain 1 "domain "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-domain
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address domain\fR [\fB\-h\fR|\fB\-\-help\fR] <\fIsubcommands\fR>
|
||||
.SH DESCRIPTION
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
.SH SUBCOMMANDS
|
||||
.TP
|
||||
start\-cli\-package\-host\-address\-domain\-private(1)
|
||||
.TP
|
||||
start\-cli\-package\-host\-address\-domain\-public(1)
|
||||
16
core/man/start-cli/start-cli-package-host-address-list.1
Normal file
16
core/man/start-cli/start-cli-package-host-address-list.1
Normal file
@@ -0,0 +1,16 @@
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH start-cli-package-host-address-list 1 "list "
|
||||
.SH NAME
|
||||
start\-cli\-package\-host\-address\-list \- List addresses for a host
|
||||
.SH SYNOPSIS
|
||||
\fBstart\-cli package host address list\fR [\fB\-\-format\fR] [\fB\-h\fR|\fB\-\-help\fR]
|
||||
.SH DESCRIPTION
|
||||
List addresses for a host
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-\-format\fR
|
||||
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user