# #!/bin/bash

confile="/etc/default/grub.d/01_setup_start_loglevel.cfg"

if [ ! -f "$confile" ]; then
    touch "$confile"
fi

if is_context_exists "$confile"; then
    return 0
fi

cat > "$confile" << EOF
GRUB_CMDLINE_LINUX_DEFAULT="\$GRUB_CMDLINE_LINUX_DEFAULT loglevel=0"

EOF

