mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-17 20:17:31 +00:00
18 lines
515 B
Meson
18 lines
515 B
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
if libapparmor.found()
|
|
configure_file(
|
|
configuration: conf,
|
|
input: 'container-base',
|
|
output: 'container-base',
|
|
install: true,
|
|
install_dir: join_paths(sysconfdir, 'apparmor.d', 'abstractions', 'lxc'))
|
|
|
|
configure_file(
|
|
configuration: conf,
|
|
input: 'start-container.in',
|
|
output: 'start-container',
|
|
install: true,
|
|
install_dir: join_paths(sysconfdir, 'apparmor.d', 'abstractions', 'lxc'))
|
|
endif
|