mirror_lxc/config/bash/meson.build
Stéphane Graber 97f93be72e
meson: Align SPDX license id
Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
2024-04-02 20:42:09 -04:00

40 lines
736 B
Meson

# SPDX-License-Identifier: LGPL-2.1+
bash_completion = configure_file(
configuration: conf,
input: '_lxc.in',
output: '_lxc',
install: true,
install_dir: bashcompletiondir)
foreach cmd: [
'lxc-attach',
'lxc-autostart',
'lxc-cgroup',
'lxc-checkpoint',
'lxc-config',
'lxc-console',
'lxc-copy',
'lxc-create',
'lxc-destroy',
'lxc-device',
'lxc-execute',
'lxc-freeze',
'lxc-info',
'lxc-ls',
'lxc-monitor',
'lxc-snapshot',
'lxc-start',
'lxc-stop',
'lxc-top',
'lxc-unfreeze',
'lxc-unshare',
'lxc-usernsexec',
'lxc-wait',
]
install_symlink(cmd,
pointing_to: '_lxc',
install_dir: bashcompletiondir)
endforeach