48 lines
1.4 KiB
Rust
48 lines
1.4 KiB
Rust
|
use clap::{Arg, App, SubCommand, ArgMatches};
|
||
|
|
||
|
use crate::nix::Hive;
|
||
|
use crate::util;
|
||
|
|
||
|
pub fn subcommand() -> App<'static, 'static> {
|
||
|
let command = SubCommand::with_name("build")
|
||
|
.about("Build the configuration")
|
||
|
.arg(Arg::with_name("verbose")
|
||
|
.short("v")
|
||
|
.long("verbose")
|
||
|
.help("Be verbose")
|
||
|
.long_help("Deactivates the progress spinner and prints every line of output.")
|
||
|
.takes_value(false));
|
||
|
|
||
|
util::register_common_args(command)
|
||
|
}
|
||
|
|
||
|
pub async fn run(_global_args: &ArgMatches<'_>, local_args: &ArgMatches<'_>) {
|
||
|
let hive = Hive::from_config_arg(local_args).unwrap();
|
||
|
|
||
|
println!("Enumerating nodes...");
|
||
|
let deployment_info = hive.deployment_info().await.unwrap();
|
||
|
let all_nodes: Vec<String> = deployment_info.keys().cloned().collect();
|
||
|
|
||
|
let selected_nodes = match local_args.value_of("on") {
|
||
|
Some(filter) => {
|
||
|
util::filter_nodes(&all_nodes, filter)
|
||
|
}
|
||
|
None => all_nodes.clone(),
|
||
|
};
|
||
|
|
||
|
if selected_nodes.len() == 0 {
|
||
|
println!("No hosts matched. Exiting...");
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if selected_nodes.len() == all_nodes.len() {
|
||
|
println!("Building all node configurations...");
|
||
|
} else {
|
||
|
println!("Selected {} out of {} hosts. Building node configurations...", selected_nodes.len(), deployment_info.len());
|
||
|
}
|
||
|
|
||
|
hive.build_selected(selected_nodes).await.unwrap();
|
||
|
|
||
|
println!("Success!");
|
||
|
}
|