23 lines
685 B
Meson
23 lines
685 B
Meson
# Copyright (c) 2021, Dell Inc. or its subsidiaries. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# See the LICENSE file for details.
|
|
#
|
|
# This file is part of NVMe STorage Appliance Services (nvme-stas).
|
|
#
|
|
# Authors: Martin Belanger <Martin.Belanger@dell.com>
|
|
#
|
|
dbus_conf_dir = datadir / 'dbus-1' / 'system.d'
|
|
|
|
configure_file(
|
|
input: conf.get('STAFD_DBUS_NAME') + '.in.conf',
|
|
output: conf.get('STAFD_DBUS_NAME') + '.conf',
|
|
configuration: conf,
|
|
install_dir: dbus_conf_dir,
|
|
)
|
|
|
|
configure_file(
|
|
input: conf.get('STACD_DBUS_NAME') + '.in.conf',
|
|
output: conf.get('STACD_DBUS_NAME') + '.conf',
|
|
configuration: conf,
|
|
install_dir: dbus_conf_dir,
|
|
)
|