#!/bin/bash

key="blacklist wl"
confile="/etc/modprobe.d/bcm.conf"

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

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