-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmod.rs
More file actions
24 lines (22 loc) · 918 Bytes
/
mod.rs
File metadata and controls
24 lines (22 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Network connectivity and communication steps
//!
//! This module contains steps that manage network connectivity, communication,
//! and connection establishment operations. These steps ensure that network
//! services and connections are available before proceeding with deployment.
//!
//! ## Available Steps
//!
//! - `wait_ssh_connectivity` - SSH connectivity establishment and verification
//!
//! ## Key Features
//!
//! - Network connectivity verification and waiting mechanisms
//! - SSH connection establishment with retry logic
//! - Service availability checking and validation
//! - Integration with timeout and retry mechanisms
//!
//! These steps ensure that network communications are established and stable
//! before attempting configuration or deployment operations that require
//! remote connectivity.
pub mod wait_ssh_connectivity;
pub use wait_ssh_connectivity::WaitForSSHConnectivityStep;