#!/bin/bash

key="blacklist ideapad_laptop"
confile="/etc/modprobe.d/blacklist-ideapad-laptop.conf"

if is_context_exists "$key" "$confile"; then
    return 0
fi

echo "$key" | tee -a "$confile"
