diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-02-26 15:53:35 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-03-01 22:25:42 +0100 |
commit | ed459ec0c0c997734447985532c5683b50fc46bd (patch) | |
tree | ea2cc135387fa23a6c1766680278942a05b50363 /src/import/import-fs.c | |
parent | import: downgrade HTTP error code log message levels (diff) | |
download | systemd-ed459ec0c0c997734447985532c5683b50fc46bd.tar.xz systemd-ed459ec0c0c997734447985532c5683b50fc46bd.zip |
import: mention explicitly which image directory we operate on
Also, let's move the similar message about sync() mode to more common
code.
Diffstat (limited to 'src/import/import-fs.c')
-rw-r--r-- | src/import/import-fs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/import/import-fs.c b/src/import/import-fs.c index b1619ef9ea..44fc5be8a5 100644 --- a/src/import/import-fs.c +++ b/src/import/import-fs.c @@ -171,6 +171,8 @@ static int import_fs(int argc, char *argv[], void *userdata) { log_info("Importing '%s', saving as '%s'.", strempty(pretty), local); } + log_info("Operating on image directory '%s'.", arg_image_root); + if (!arg_sync) log_info("File system synchronization on completion is off."); |