diff --git a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
index 11626a5..3797b46 100644
--- a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
+++ b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
@@ -10,4 +10,4 @@ table {
| disable a service | `systemctl disable <servicename>` | `rc-update del <servicename>` |
-| start a service | `systemctl start <servicename>` | `service <servicename> start` |
-| stop a service | `systemctl stop <servicename>` | `service <servicename> stop` |
+| 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` |
| get service status | `systemctl status <servicename>` | `service <servicename> status` (do not always trust this. search the process list as well) |