First Push
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
# NVIDIA Grid Daemon Init Script
|
||||
#
|
||||
# Copyright (c) 2015 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 Grid Daemon"
|
||||
|
||||
start on runlevel [2345]
|
||||
stop on runlevel [016]
|
||||
|
||||
env NVGD_BIN=/usr/bin/nvidia-gridd
|
||||
env NVGD_RUNTIME=/var/run/nvidia-gridd
|
||||
env LD_LIBRARY_PATH=/usr/lib/nvidia/gridd
|
||||
expect fork
|
||||
|
||||
exec $NVGD_BIN
|
||||
|
||||
post-stop script
|
||||
rm -rf $NVGD_RUNTIME
|
||||
end script
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user