]> git.ipfire.org Git - thirdparty/dracut.git/blame - modules.d/30convertfs/do-convertfs.sh
Fix boot with `fips` without a value
[thirdparty/dracut.git] / modules.d / 30convertfs / do-convertfs.sh
CommitLineData
ae8b82e3 1#!/bin/bash
ae8b82e3 2
2cf328ad 3if getargbool 0 rd.convertfs; then
6334ffdb 4 if getargbool 0 rd.debug; then
2cf328ad 5 bash -x convertfs "$NEWROOT" 2>&1 | vinfo
6334ffdb 6 else
2cf328ad 7 convertfs "$NEWROOT" 2>&1 | vinfo
6334ffdb 8 fi
ae8b82e3 9fi