lab-ops 0.1.16

Personal utility tools for my homelab
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// The lab-ops binary installed on the host system.
pub const BIN: &str = "/usr/local/bin/lab-ops";

/// The lab-ops CLI command name (for subprocess invocations).
pub const CMD: &str = "lab-ops";

/// Subcommand name for the DNS zone-to-Ansible converter.
pub const CMD_CF2ANSIBLE: &str = "cf2ansible";
/// Subcommand name for the DNS zone-to-Terraform converter.
pub const CMD_CF2TERRA: &str = "cf2terra";
/// Subcommand name for the Docker network viewer.
pub const CMD_DOCKERNET: &str = "dockernet";
/// Subcommand name for the NAT mapping tool.
pub const CMD_NATMAP: &str = "natmap";
/// Subcommand name for the service discovery daemon.
pub const CMD_AUTO_DISCOVER: &str = "auto-discover";
/// Subcommand name for shell completion generation.
pub const CMD_COMPLETIONS: &str = "completions";