blob: 2ce1c47602387bf26b685ea9e6fddb0ba87a2d51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
completion_commands = [
'virsh',
'virt-admin',
]
foreach command : completion_commands
completion_conf = configuration_data({
'command': command,
})
completion = configure_file(
input: 'vsh.in',
output: command,
configuration: completion_conf,
)
install_data(completion, install_dir: bash_completion_dir)
endforeach
|