#!/bin/sh

uci -q get "system.banner" && exit 0

. /lib/functions.sh

uci -q set "system.banner=banner"
uci_set "system" "banner" "enabled" "0"
uci_commit "system"

exit 0
