#!/bin/bash

key="options rtl8192ce fwlps=0 ips=0"
confile="/etc/modprobe.d/rtl8192ce.conf"

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

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