O mais simples de conseguir isso é criar na próxima tarefa /etc/crontab
:
@reboot /path/to/your/python/script.sh
Mais informações você pode obter em man 5 crontab .
O CoreOS não tem /etc/crontab
.
Outra maneira é criar systemd-timer . Exemplo sobre o systemd-timer que você pode obter da minha resposta sobre o systemd: Use systemd-shutdownd agendar .
Exemplo simples de systemd-timer que está localizado em /etc/systemd/system/example.timer
:
[Unit]
Description=Run once at system boot
[Timer]
# You may chose one of this triggers
OnBootSec=0min # run after system boot
OnStartupSec=0min # run after systemd was started
[Install]
WantedBy=timers.target # target in wich timer will be installed