Commit cce781d4 authored by Anton Midyukov's avatar Anton Midyukov

tty: cleanup quiet from cmdline (extlinux, grub)

parent 3552c6ec
......@@ -16,3 +16,13 @@ if ! grep -q "$BIN" "$CFG"; then
n=$(($n+1))
done
fi
EXTLINUXCFG=/boot/extlinux/extlinux.conf
if [ -f "$EXTLINUXCFG" ]; then
sed -i "s/ quiet / /g;s/ quiet'/'/" "$EXTLINUXCFG"
fi
GRUBCFG=/etc/sysconfig/grub2
if [ -f "$GRUBCFG" ]; then
sed -i "s/ quiet / /g;s/ quiet'/'/" "$GRUBCFG"
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment