Skip to content

Commit 69e92c4

Browse files
author
Aaron D. Marasco
committed
Spell check
1 parent ba291a6 commit 69e92c4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ To link our service to our script, extend the unit file as follows:
6868
Now our service can be started:
6969

7070
$ systemctl --user start python_demo_service
71-
71+
7272
Depending on your systemd version, you may need to reload the user daemon so that our service can be found and started.
7373

7474
$ systemctl --user daemon-reload
@@ -189,7 +189,7 @@ Afterwards, the logs will show that systemd restarted our service:
189189

190190
### Notifying systemd when the Service is Ready
191191

192-
Often, a service needs to perform some initializiation before it is ready to perform its actual work. Your service can notify systemd once it has completed its initialization. This is particularly useful when other services depend on your service, since it allows systemd to delay starting these until your service is really ready.
192+
Often, a service needs to perform some initialization before it is ready to perform its actual work. Your service can notify systemd once it has completed its initialization. This is particularly useful when other services depend on your service, since it allows systemd to delay starting these until your service is really ready.
193193

194194
The notification is done using the [sd_notify] system call. We'll use the [python-systemd] package to execute it, so [make sure it is installed](https://github.com/systemd/python-systemd#installation). Then add the following lines to our script:
195195

0 commit comments

Comments
 (0)