Skip to content

Commit

Permalink
chore(backend/install): add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
madonuko committed Feb 12, 2025
1 parent d1866ec commit 15ab7c0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/backend/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,11 @@ impl InstallationState {

// /etc should exist, so the mount order is somehow fucked up
std::fs::create_dir_all("/etc/").wrap_err("cannot create /etc")?;
tracing::debug!("Writing fstab");
std::fs::write("/etc/fstab", fstab).wrap_err("cannot write to /etc/fstab")?;

for module in &self.postinstall {
tracing::debug!(?module, "Running module");
module.run(&context)?;
}

Expand Down

0 comments on commit 15ab7c0

Please sign in to comment.