diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-09-15 22:01:16 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-09-15 22:40:10 +0200 |
commit | e0258ac88673617a9599c8ef8bac970861d8edf8 (patch) | |
tree | 4ca08147f0a97ba4494a709f2498c9d219ae0a2d /src/partition/repart.c | |
parent | man/bootup: rename initrd to exitrd at one more place (diff) | |
download | systemd-e0258ac88673617a9599c8ef8bac970861d8edf8.tar.xz systemd-e0258ac88673617a9599c8ef8bac970861d8edf8.zip |
repart: Fix log messages in partition_populate_directory()
We're not actually populating a filesystem here, we're preparing
to populate a filesystem, so update the log messages accordingly.
Diffstat (limited to 'src/partition/repart.c')
-rw-r--r-- | src/partition/repart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/partition/repart.c b/src/partition/repart.c index e24656f451..b430d2d463 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -5408,7 +5408,7 @@ static int partition_populate_directory(Context *context, Partition *p, char **r assert(ret); - log_info("Populating %s filesystem.", p->format); + log_info("Preparing to populate %s filesystem.", p->format); r = var_tmp_dir(&vt); if (r < 0) @@ -5434,7 +5434,7 @@ static int partition_populate_directory(Context *context, Partition *p, char **r if (r < 0) return r; - log_info("Successfully populated %s filesystem.", p->format); + log_info("Ready to populate %s filesystem.", p->format); *ret = TAKE_PTR(root); return 0; |