mirror of
https://github.com/libfuse/libfuse.git
synced 2026-07-07 14:47:41 +08:00
e25d7b9e25
Create a simple high-level fuse server that can be run as a systemd service. Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
16 lines
368 B
Plaintext
16 lines
368 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (C) 2026 Oracle. All Rights Reserved.
|
|
# Author: Darrick J. Wong <djwong@kernel.org>
|
|
[Unit]
|
|
Description=Socket for service_hl Service
|
|
|
|
[Socket]
|
|
ListenSequentialPacket=@FUSE_SERVICE_SOCKET_DIR_RAW@/service_hl
|
|
Accept=yes
|
|
SocketMode=@FUSE_SERVICE_SOCKET_PERMS@
|
|
RemoveOnStop=yes
|
|
|
|
[Install]
|
|
WantedBy=sockets.target
|