From a0f0cf0a6b345b296ba3cc71a3f9d246408cd2d4 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 31 May 2022 21:37:41 +0900 Subject: [PATCH] portable: fix command option in comment Follow-up for edea370222eec3d185dd84a7d9e942ec5933af63. --- src/portable/portable.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/portable/portable.c b/src/portable/portable.c index a8536c6692b..c6e74e9c27d 100644 --- a/src/portable/portable.c +++ b/src/portable/portable.c @@ -1562,10 +1562,10 @@ int portable_detach( _cleanup_free_ char *marker = NULL, *unit_name = NULL; const char *dot; - /* When a portable service is enabled with "portablectl --runtime attach", and is disabled - * with "portablectl --enable detach", which calls DisableUnitFilesWithFlags DBus method, - * the main unit file is removed, but its drop-ins are not. Hence, here we need to list both - * main unit files and drop-in directories (without the main unit files). */ + /* When a portable service is enabled with "portablectl --copy=symlink --enable --now attach", + * and is disabled with "portablectl --enable --now detach", which calls DisableUnitFilesWithFlags + * DBus method, the main unit file is removed, but its drop-ins are not. Hence, here we need + * to list both main unit files and drop-in directories (without the main unit files). */ dot = endswith(de->d_name, ".d"); if (dot)