fe1593dda5
Installing files to standard path across each version and using ldconfig has issues with side-by-side install. Usage of RUNPATH/RPATH for ROCm to ensure all ROCm libraries are picked without the need for ldconfig. For RDC server to be picked up by systemctl, service config file shall be a symlink from /lib/systemctl/system/rdc.service to corresponding RDC file path in a given version of ROCm For side-by-side install packages of RDC post install scripts will be removed. Hence Use will have to set the symlink explicitly for now. Change-Id: I916da7cf132f0f9c667e2470fac2b0875e3db9d0
47 lignes
1.0 KiB
Plaintext
Fichiers exécutables
47 lignes
1.0 KiB
Plaintext
Fichiers exécutables
|
|
# References:
|
|
# https://linuxconfig.org/how-to-create-systemd-service-unit-in-linux
|
|
# https://www.linux.com/tutorials/systemd-services-beyond-starting-and-stopping/
|
|
[Unit]
|
|
Description=Radeon Data Center Daemon (rdcd)
|
|
After=network.target
|
|
|
|
# Add any services that must be started before rdcd here
|
|
#After=
|
|
|
|
# Add any non-service units required by rdcd here
|
|
#Requires=
|
|
|
|
[Service]
|
|
User=rdc
|
|
Group=rdc
|
|
|
|
Type=simple
|
|
|
|
CapabilityBoundingSet=CAP_DAC_OVERRIDE
|
|
AmbientCapabilities=CAP_DAC_OVERRIDE
|
|
|
|
# If we need to start anything before rdcd, use this
|
|
# ExecStartPre=
|
|
|
|
ExecStart=/@RDC_CLIENT_INSTALL_PREFIX@/rdc/bin/rdcd
|
|
|
|
# If we need to start anything after rdcd use this
|
|
# ExecStartPost=
|
|
|
|
# If we want to change the default time out for the ExecStop (90 sec),
|
|
# we can modify that time limit with TimeoutStopSec
|
|
# TimeoutStopSec=
|
|
|
|
# Note, we can have multiple ExecStop commands if necessary
|
|
ExecStop=/bin/kill -15 $MAINPID
|
|
#ExecReload=
|
|
#ExecStartPost=
|
|
#ExecStopPost=
|
|
|
|
# StandardOutput=journal
|
|
# StandardError=inherit
|
|
|
|
[Install]
|
|
WantedBy= multi-user.target
|