Skip to content

Commit 8d0ff7b

Browse files
authored
[bootstrap] Clarify distinction between service extraction and launching (#137)
1 parent 95a39d5 commit 8d0ff7b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

omicron-bootstrap-agent/src/bootstrap_agent.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ impl BootstrapAgent {
137137
self.enable_service(service)
138138
}
139139

140-
// Verify, unpack, and enable a service.
140+
// Verify and unpack a service.
141+
// NOTE: Does not enable the service.
141142
fn extract<S, P1, P2>(
142143
&self,
143144
digests: &HashMap<String, Vec<u8>>,
@@ -154,7 +155,7 @@ impl BootstrapAgent {
154155
let destination = destination.as_ref();
155156
let service = service.as_ref();
156157

157-
info!(&self.log, "Launching {} Service", service);
158+
info!(&self.log, "Extracting {} Service", service);
158159
let tar_name = format!("{}.tar", service);
159160
let tar_path = tar_source.join(&tar_name);
160161

0 commit comments

Comments
 (0)