diff --git a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
index 3797b46..e565609 100644
--- a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
+++ b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
@@ -10,4 +10,6 @@ table {
| disable a service | `systemctl disable <servicename>` | `rc-update del <servicename>` |
-| start a service | `systemctl start <servicename>` OR, better: `systemctl enable --now <servicename>` | `service <servicename> start` |
-| stop a service | `systemctl stop <servicename>` OR, better: `systemctl disable --now <servicename>` | `service <servicename> stop` |
+| start a service | `systemctl start <servicename>` | `service <servicename> start` |
+| stop a service | `systemctl stop <servicename>` | `service <servicename> stop` |
+| stop a service in such a way that it won't start itself up again without asking | `systemctl disable --now <servicename>`
+| `service <servicename> stop` |
| get service status | `systemctl status <servicename>` | `service <servicename> status` (do not always trust this. search the process list as well) |