Skip to content

Commit

Permalink
Add proxy-ARP environment variables to virtual hardware xtask (#5694)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaecker authored May 3, 2024
1 parent 18e91fe commit 8ffe0e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-tools/xtask/src/virtual_hardware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ pub struct Pxa {
/// The first IP address your Oxide cluster can use.
///
/// Requires `pxa-end`.
#[clap(long = "pxa-start", requires = "end")]
#[clap(long = "pxa-start", requires = "end", env = "PXA_START")]
start: Option<String>,

/// The last IP address your Oxide cluster can use
///
/// Requires `pxa-start`.
#[clap(long = "pxa-end", requires = "start")]
#[clap(long = "pxa-end", requires = "start", env = "PXA_END")]
end: Option<String>,
}

Expand Down

0 comments on commit 8ffe0e1

Please sign in to comment.