fstab-generator: also logs about x-systemd.growfs mount option
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Feb 2019 02:31:10 +0000 (11:31 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Feb 2019 02:31:10 +0000 (11:31 +0900)
src/fstab-generator/fstab-generator.c

index d80e5d3..f3c223a 100644 (file)
@@ -571,9 +571,9 @@ static int parse_fstab(bool initrd) {
                 noauto = fstab_test_yes_no_option(me->mnt_opts, "noauto\0" "auto\0");
                 nofail = fstab_test_yes_no_option(me->mnt_opts, "nofail\0" "fail\0");
 
-                log_debug("Found entry what=%s where=%s type=%s makefs=%s noauto=%s nofail=%s",
+                log_debug("Found entry what=%s where=%s type=%s makefs=%s growfs=%s noauto=%s nofail=%s",
                           what, where, me->mnt_type,
-                          yes_no(makefs),
+                          yes_no(makefs), yes_no(growfs),
                           yes_no(noauto), yes_no(nofail));
 
                 if (streq(me->mnt_type, "swap"))