We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a39d5 commit 8d0ff7bCopy full SHA for 8d0ff7b
omicron-bootstrap-agent/src/bootstrap_agent.rs
@@ -137,7 +137,8 @@ impl BootstrapAgent {
137
self.enable_service(service)
138
}
139
140
- // Verify, unpack, and enable a service.
+ // Verify and unpack a service.
141
+ // NOTE: Does not enable the service.
142
fn extract<S, P1, P2>(
143
&self,
144
digests: &HashMap<String, Vec<u8>>,
@@ -154,7 +155,7 @@ impl BootstrapAgent {
154
155
let destination = destination.as_ref();
156
let service = service.as_ref();
157
- info!(&self.log, "Launching {} Service", service);
158
+ info!(&self.log, "Extracting {} Service", service);
159
let tar_name = format!("{}.tar", service);
160
let tar_path = tar_source.join(&tar_name);
161
0 commit comments