Systemd - Task Scheduling
Schedule tasks on Linux using systemd timers and services.
Create Timer and Service
Create a Service
[Unit]
Description="Put a description of the service"
[Service]
Type=simple
ExecStart=/path/to/your/script.sh
User=user_who_runs_the_program
Group=group_who_runs_the_programCreate a Timer
Enable & Start the Timer
More information
Last updated