#!/bin/bash

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

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

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