diff options
| author | root <D Delmar Davis feurig@fromhell.com> | 2024-08-30 23:07:17 -0700 |
|---|---|---|
| committer | root <D Delmar Davis feurig@fromhell.com> | 2024-08-30 23:07:17 -0700 |
| commit | 0f4782a78f5e4f1d389fb973ff57350ad97e4084 (patch) | |
| tree | f461d02246066bb4dd108056988a4a76796dd3a4 /systemd | |
| parent | ad8b4eaa0e6e59a8eb7ffbf9734c3bf999a4b05d (diff) | |
make the service work
Diffstat (limited to 'systemd')
| -rw-r--r-- | systemd/system/analogclock.service | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/systemd/system/analogclock.service b/systemd/system/analogclock.service index b83d221..8550f2a 100644 --- a/systemd/system/analogclock.service +++ b/systemd/system/analogclock.service @@ -1,16 +1,16 @@ [Unit] Description = Analog Clock as a service. -After = network.target # Assuming you want to start after network interfaces are made available +After = network.target [Service] Type = simple ExecStart = python3 /usr/local/merlot/bin/analogclock.py & -User = root # User to run the script as -Group = root # Group to run the script as -Restart = on-failure # Restart when there are errors +User = root +Group = root +Restart = on-failure SyslogIdentifier = analogclock RestartSec = 5 TimeoutStartSec = infinity [Install] -WantedBy = multi-user.target # Make it accessible to other users +WantedBy = multi-user.target |
