]> git.proxmox.com Git - mirror_lxcfs.git/blob - share/meson.build
proc: Fix swap handling for cgroups v2 (zero limits)
[mirror_lxcfs.git] / share / meson.build
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2
3 lxcfs_conf_data = custom_target(
4 '00-lxcfs.conf',
5 input: '00-lxcfs.conf.in',
6 output: '00-lxcfs.conf',
7 command: [
8 meson_render_jinja2,
9 config_h,
10 '@INPUT@',
11 '@OUTPUT@',
12 ],
13 install: true,
14 install_dir: lxcconfdir)
15
16 lxcfs_hook_mount_data = custom_target(
17 'lxc.mount.hook',
18 input: 'lxc.mount.hook.in',
19 output: 'lxc.mount.hook',
20 command: [
21 meson_render_jinja2,
22 config_h,
23 '@INPUT@',
24 '@OUTPUT@',
25 ],
26 install: true,
27 install_dir: lxcfssharedir)
28
29 lxcfs_hook_reboot_data = custom_target(
30 'lxc.reboot.hook',
31 input: 'lxc.reboot.hook.in',
32 output: 'lxc.reboot.hook',
33 command: [
34 meson_render_jinja2,
35 config_h,
36 '@INPUT@',
37 '@OUTPUT@',
38 ],
39 install: true,
40 install_dir: lxcfssharedir)