Hello, I'm trying to spin up agents thru systemd service, but it's failing:
						
							
	one year ago
					
				Hello, what is best practice for spinning up the ClearML agent after "remote machine" reboot?
						
							
	10 months ago
					
				Can anybody help me please?
The script:
#!/bin/bash 
export PATH="$PATH:$HOME/.local/bin/" 
clearml-agent daemon --detached --create-queue --queue holly-gpu0 gpu-24gb gpu-12gb gpu-8gb --gpus 0 
clearml-agent daemon --queue task_services --detached --services-mode --cpu-only
					# Contents of /etc/systemd/system/clearml-spin-up-agent.service
[Unit]
Description=ClearML Spin up agent service
After=network.target
[Service]
Type=simple
Restart=always
User=clearml
WorkingDirectory=/home/clearml
ExecStart=/home/clearml/spin_up_clearml_agent.sh
[Install]
WantedBy=multi-user.target