Ubuntu Server - Criando serviço para rodar multiplos Script Py
Canal Qb

Galera, este é um script, para rodar mais de um script py, dentro de um unico serviço service do Ubuntu.
[Unit]
Description=Serviços de um minuto
After=multi-user.target

[Service]
Type=simple
ExecStart=/bin/bash -c '/usr/bin/python /mnt/hd/arquivos/python/telegram/bots/BitcoinGPUminingBot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/clickbee/ClickBeeDOGEBot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/clickbee/ClickBeeLTCBot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/clickbee/ClickBeeSHIBABot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/clickbee/ClickBeeBot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/clickbee/ClickBeeBTCBot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/bots/CryptoFarmBot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/bots/Free_Bnb_Fast_Pay_Bot.py && 
/usr/bin/python /mnt/hd/arquivos/python/telegram/bots/Free_Doge_Hero_Claim_bot.py'
User=qb
WorkingDirectory=/mnt/hd/arquivos/python/telegram/bots/
Restart=always
RestartSec=3601

[Install]
WantedBy=multi-user.target

Não existe quebra de pagina no ExecStart neste exemplo, é uma linha unica.