From 27347026036e9f2b28c6f8f96e63069e390a5ab9 Mon Sep 17 00:00:00 2001 From: ExplGamma <36189127+ExplGamma@users.noreply.github.com> Date: Tue, 2 Sep 2025 14:07:05 +1000 Subject: [PATCH 1/2] Update wait_for_cloud_init.rst to be more consistent about systemd usage --- doc/rtd/howto/wait_for_cloud_init.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rtd/howto/wait_for_cloud_init.rst b/doc/rtd/howto/wait_for_cloud_init.rst index 929ab138593..8cbad2e7c7b 100644 --- a/doc/rtd/howto/wait_for_cloud_init.rst +++ b/doc/rtd/howto/wait_for_cloud_init.rst @@ -17,7 +17,7 @@ SystemD Systems using systemd may be configured to start a service after cloud-init completes. This may be accomplished by including -``After=cloud-init.target multi-user.target`` in the unit file. For example: +``After=cloud-final.service multi-user.target`` in the unit file. For example: .. code-block:: From 01fcd9e1fa1ce3ce8ef9a37f76318b7e28cc3f87 Mon Sep 17 00:00:00 2001 From: ExplGamma <36189127+ExplGamma@users.noreply.github.com> Date: Wed, 3 Sep 2025 05:46:43 +1000 Subject: [PATCH 2/2] Update wait_for_cloud_init.rst per review changes --- doc/rtd/howto/wait_for_cloud_init.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/rtd/howto/wait_for_cloud_init.rst b/doc/rtd/howto/wait_for_cloud_init.rst index 8cbad2e7c7b..0ca2ca33c22 100644 --- a/doc/rtd/howto/wait_for_cloud_init.rst +++ b/doc/rtd/howto/wait_for_cloud_init.rst @@ -17,13 +17,13 @@ SystemD Systems using systemd may be configured to start a service after cloud-init completes. This may be accomplished by including -``After=cloud-final.service multi-user.target`` in the unit file. For example: +``After=cloud-init.target multi-user.target`` in the unit file. For example: .. code-block:: [Unit] Description=Example service - After=cloud-final.service multi-user.target + After=cloud-init.target multi-user.target [Service] Type=oneshot