fstab-generator: also logs about x-systemd.growfs mount option

This commit is contained in:
Yu Watanabe 2019-02-18 11:31:10 +09:00
parent 7731c1c20a
commit ac1d4c7986
1 changed files with 2 additions and 2 deletions

View 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"))