23 lines
561 B
Plaintext
Executable File
23 lines
561 B
Plaintext
Executable File
# NVIDIA Topology Daemon Init Script
|
|
#
|
|
# Copyright (c) 2021 NVIDIA Corporation
|
|
#
|
|
# All rights reserved. All information contained herein is proprietary and
|
|
# confidential to NVIDIA Corporation. Any use, reproduction, or disclosure
|
|
# without the written permission of NVIDIA Corporation is prohibited.
|
|
#
|
|
|
|
description "NVIDIA Topology Daemon"
|
|
|
|
start on runlevel [2345]
|
|
stop on runlevel [016]
|
|
|
|
env NVTD_BIN=/usr/bin/nvidia-topologyd
|
|
env NVTD_RUNTIME=/var/run/nvidia-topologyd
|
|
env LD_LIBRARY_PATH=/usr/lib/nvidia/topologyd
|
|
expect fork
|
|
|
|
exec $NVTD_BIN
|
|
|
|
end script
|