a733357053
When installing to a non-system-wide prefix as a non-root user, the tmpfilesdir path defined by systemd might not be accessible. Overriding the path helps to prevent the installation from failing. https://github.com/containers/toolbox/pull/717
12 lines
272 B
Meson
12 lines
272 B
Meson
option(
|
|
'profile_dir',
|
|
description: 'Directory for profile.d files to be read by the shell on start-up',
|
|
type: 'string',
|
|
value: '/usr/share/profile.d'
|
|
)
|
|
|
|
option(
|
|
'tmpfiles_dir',
|
|
description: 'Directory for system-wide tmpfiles.d(5) files',
|
|
type: 'string',
|
|
)
|