#!/bin/bash
key="blacklist pcspkr"
confile="/etc/modprobe.d/blacklist-pcspkr.conf"
if is_context_exists "$key" "$confile"; then
    return 1
fi
echo "$key" | tee -a "$confile"
