Diff of Infrastructure And Operations/Systemd Openrc Cheatsheet at 563b0f1

diff --git a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
index 06eec34..a3990bc 100644
--- a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
+++ b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
@@ -18,3 +18,3 @@ table {
 | how to view the logs for a service  | `journalctl -u <servicename> -n 100 --no-pager` (gets last 100 lines)  |  check inside the service configuration file (see above). it should have `output_log=<filepath>` and `error_log=<filepath>`   | 
-| how to configure environment variables for a service? |  you can [[ https://www.baeldung.com/linux/systemd-services-environment-variables | use the Environment="var=value" in the service configuration file ]]    |     `/etc/default/<servicename>` is the file.  Add one `var=value` per line        |
+| how to configure environment variables for a service? |  you can [[ https://www.baeldung.com/linux/systemd-services-environment-variables | use the Environment="var=value" in the service configuration file ]]    |     `/etc/default/<servicename>` or `/etc/conf.d/<servicename>`.  Add one `var=value` per line        |
 }