#!/bin/bash

key="options asus_nb_wmi wapf=1"
confile="/etc/modprobe.d/asus_nb_wmi.conf"

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

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