(&self, vm_config: &str)
| 184 | } |
| 185 | |
| 186 | async fn ensure_app_boot_allowed(&self, vm_config: &str) -> Result<BootConfig> { |
| 187 | let att = self.ensure_attested()?; |
| 188 | self.ensure_app_attestation_allowed(att, false, false, vm_config) |
| 189 | .await |
| 190 | } |
| 191 | |
| 192 | fn image_cache_dir(&self) -> PathBuf { |
| 193 | self.state.config.image.cache_dir.join("images") |
no test coverage detected