apply: Run rustfmt

This commit is contained in:
Zhaofeng Li 2022-09-01 18:49:11 -06:00
parent f01f6ac197
commit 52b594a167

View file

@ -125,9 +125,11 @@ This is an experimental feature."#)
pub fn subcommand() -> ClapCommand<'static> { pub fn subcommand() -> ClapCommand<'static> {
let command = ClapCommand::new("apply") let command = ClapCommand::new("apply")
.about("Apply configurations on remote machines") .about("Apply configurations on remote machines")
.arg(Arg::new("goal") .arg(
.help("Deployment goal") Arg::new("goal")
.long_help(r#"The goal of the deployment. .help("Deployment goal")
.long_help(
r#"The goal of the deployment.
Same as the targets for switch-to-configuration, with the following extra pseudo-goals: Same as the targets for switch-to-configuration, with the following extra pseudo-goals:
@ -136,13 +138,22 @@ Same as the targets for switch-to-configuration, with the following extra pseudo
- keys: Only upload the keys to the remote nodes - keys: Only upload the keys to the remote nodes
`switch` is the default goal unless `--reboot` is passed, in which case `boot` is the default. `switch` is the default goal unless `--reboot` is passed, in which case `boot` is the default.
"#) "#,
.default_value("switch") )
.default_value_if("reboot", None, Some("boot")) .default_value("switch")
.default_value("switch") .default_value_if("reboot", None, Some("boot"))
.index(1) .default_value("switch")
.possible_values(&["build", "push", "switch", "boot", "test", "dry-activate", "keys"])) .index(1)
; .possible_values(&[
"build",
"push",
"switch",
"boot",
"test",
"dry-activate",
"keys",
]),
);
let command = register_deploy_args(command); let command = register_deploy_args(command);
util::register_selector_args(command) util::register_selector_args(command)