Skip to content

Commit

Permalink
create /etc/tmpfiles.d on ostree (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc authored Oct 24, 2023
1 parent 2dd4081 commit 93cdd9b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/planner/ostree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,13 @@ impl Planner for Ostree {
);
}

plan.push(
CreateDirectory::plan("/etc/tmpfiles.d", None, None, 0o0755, false)
.await
.map_err(PlannerError::Action)?
.boxed(),
);

plan.push(
ConfigureInitService::plan(InitSystem::Systemd, true)
.await
Expand Down

0 comments on commit 93cdd9b

Please sign in to comment.