1
0
Fork 0

Adding upstream version 2.2.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Benjamin Drung 2025-02-16 12:41:59 +01:00 committed by Daniel Baumann
parent 1d36de0179
commit 757b718eff
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
129 changed files with 16110 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# 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: 'org.nvmexpress.staf.in.conf',
output: 'org.nvmexpress.staf.conf',
configuration: conf,
install_dir: dbus_conf_dir,
)
configure_file(
input: 'org.nvmexpress.stac.in.conf',
output: 'org.nvmexpress.stac.conf',
configuration: conf,
install_dir: dbus_conf_dir,
)

View file

@ -0,0 +1,37 @@
<!--
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>
-->
<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<!-- Only allow root to own the bus. -->
<policy user="root">
<allow own_prefix="@STACD_DBUS_NAME@"/>
</policy>
<!-- Allow anyone to invoke most methods on the bus, but deny setting properties. -->
<policy context="default">
<allow send_destination="@STACD_DBUS_NAME@"/>
<deny send_destination="@STACD_DBUS_NAME@"
send_interface="org.freedesktop.DBus.Properties"
send_member="Set"
send_type="method_call"/>
</policy>
<!-- Allow root to invoke everything on the bus. -->
<policy user="root">
<allow send_destination="@STACD_DBUS_NAME@"/>
</policy>
</busconfig>

View file

@ -0,0 +1,37 @@
<!--
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>
-->
<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<!-- Only allow root to own the bus. -->
<policy user="root">
<allow own_prefix="@STAFD_DBUS_NAME@"/>
</policy>
<!-- Allow anyone to invoke most methods on the bus, but deny setting properties. -->
<policy context="default">
<allow send_destination="@STAFD_DBUS_NAME@"/>
<deny send_destination="@STAFD_DBUS_NAME@"
send_interface="org.freedesktop.DBus.Properties"
send_member="Set"
send_type="method_call"/>
</policy>
<!-- Allow root to invoke everything on the bus. -->
<policy user="root">
<allow send_destination="@STAFD_DBUS_NAME@"/>
</policy>
</busconfig>