lqusers: change name of web admin tool from webusers to lqusers

lqusers is consistent with the prefix used elsewhere in LibreQos.

Something one character shorter than that came to mind, but
I resisted.
This commit is contained in:
Dave Taht 2023-02-09 15:21:02 +00:00
parent 51c369b9b5
commit 8ba5aed14e
5 changed files with 13 additions and 13 deletions

View File

@ -24,7 +24,7 @@ rustup update
# Start building # Start building
echo "Please wait while the system is compiled. Service will not be interrupted during this stage." echo "Please wait while the system is compiled. Service will not be interrupted during this stage."
PROGS="lqosd lqtop xdp_iphash_to_cpu_cmdline xdp_pping lqos_node_manager webusers" PROGS="lqosd lqtop xdp_iphash_to_cpu_cmdline xdp_pping lqos_node_manager lqusers"
mkdir -p bin/static mkdir -p bin/static
pushd rust > /dev/null pushd rust > /dev/null
#cargo clean #cargo clean

18
src/rust/Cargo.lock generated
View File

@ -1462,6 +1462,15 @@ dependencies = [
"tui", "tui",
] ]
[[package]]
name = "lqusers"
version = "0.1.0"
dependencies = [
"anyhow",
"clap 4.1.4",
"lqos_config",
]
[[package]] [[package]]
name = "matchers" name = "matchers"
version = "0.1.0" version = "0.1.0"
@ -2879,15 +2888,6 @@ dependencies = [
"wasm-bindgen", "wasm-bindgen",
] ]
[[package]]
name = "webusers"
version = "0.1.0"
dependencies = [
"anyhow",
"clap 4.1.4",
"lqos_config",
]
[[package]] [[package]]
name = "which" name = "which"
version = "4.4.0" version = "4.4.0"

View File

@ -20,6 +20,6 @@ members = [
"xdp_pping", # Rust port of cpumap's `xdp_pping` tool, for compatibility "xdp_pping", # Rust port of cpumap's `xdp_pping` tool, for compatibility
"lqos_node_manager", # A lightweight web interface for management and local monitoring "lqos_node_manager", # A lightweight web interface for management and local monitoring
"lqos_python", # Python bindings for using the Rust bus directly "lqos_python", # Python bindings for using the Rust bus directly
"webusers", # CLI control for managing the web user list "lqusers", # CLI control for managing the web user list
"lqos_utils", # A collection of macros and helpers we find useful "lqos_utils", # A collection of macros and helpers we find useful
] ]

View File

@ -1,5 +1,5 @@
[package] [package]
name = "webusers" name = "lqusers"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"