#!/bin/sh

. /lib/functions.sh

uci_get "system" "banner" && exit 0

uci_add "system" "banner" "banner"
uci_set "system" "banner" "enabled" "0"
uci_commit "system"

exit 0
