--[[ Copyright (C) 2014-2017 - Eloi Carbo This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ]]-- local sys = require "luci.sys" m = SimpleForm("bird6", "Bird6 Daemon Status Page", "This page let you Start, Stop, Restart and check Bird6 Service Status.") m.reset = false m.submit = false s = m:section(SimpleSection) start = s:option(Button, "_start", "Start Bird4 Daemon:") start.inputtitle = " Start " start.inputstyle = "apply" stop = s:option(Button, "_stop", "Stop Bird4 Daemon:") stop.inputtitle = " Stop " stop.inputstyle = "remove" restart = s:option(Button, "_restart", "Restart Bird4 Daemon:") restart.inputtitle = "Restart" restart.inputstyle = "reload" output = s:option(DummyValue, "_value", "Service Status") function output.cfgvalue(self, section) local ret = "" if start:formvalue(section) then ret = sys.exec("/etc/init.d/bird6 start_quiet") elseif stop:formvalue(section) then ret = sys.exec("/etc/init.d/bird6 stop_quiet") elseif restart:formvalue(section) then ret = sys.exec("/etc/init.d/bird6 restart_quiet") else ret = sys.exec("/etc/init.d/bird6 status_quiet") end return ret end return m