mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-17 00:00:28 +00:00
25 lines
712 B
Meson
25 lines
712 B
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
if libapparmor.found()
|
|
configure_file(
|
|
configuration: dummy_config_data,
|
|
input: 'lxc-containers',
|
|
output: 'lxc-containers',
|
|
install: true,
|
|
install_dir: join_paths(sysconfdir, 'apparmor.d'))
|
|
|
|
configure_file(
|
|
configuration: dummy_config_data,
|
|
input: 'usr.bin.lxc-start',
|
|
output: 'usr.bin.lxc-start',
|
|
install: true,
|
|
install_dir: join_paths(sysconfdir, 'apparmor.d'))
|
|
|
|
configure_file(
|
|
configuration: dummy_config_data,
|
|
input: 'usr.bin.lxc-copy',
|
|
output: 'usr.bin.lxc-copy',
|
|
install: true,
|
|
install_dir: join_paths(sysconfdir, 'apparmor.d'))
|
|
endif
|