create /etc/tmpfiles.d on ostree (#686)

This commit is contained in:
Graham Christensen 2023-10-24 19:34:41 +02:00 committed by GitHub
parent 2dd40810fb
commit 93cdd9bcb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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