1 module("trigger.base", package.seeall)
6 id = "dnsmasq_restart",
7 title = "Restart dnsmasq",
9 action = uci.trigger.service_restart("dnsmasq"),
12 id = "dropbear_restart",
13 title = "Restart dropbear",
15 action = uci.trigger.service_restart("dropbear"),
19 title = "Remount filesystems",
21 action = uci.trigger.service_restart("fstab"),
24 id = "firewall_restart",
25 title = "Reload firewall rules",
27 action = uci.trigger.service_restart("firewall"),
31 title = "Restart the http server",
33 action = uci.trigger.service_restart("httpd")
37 title = "Reload LED settings",
40 action = uci.trigger.service_restart("led")
43 id = "network_restart",
44 title = "Restart networking and wireless",
46 action = uci.trigger.service_restart("network")
50 title = "Reload Quality of Service rules",
52 action = uci.trigger.service_restart("qos"),
55 id = "wireless_restart",
56 title = "Restart all wireless interfaces",
58 section = { "wifi-device", "wifi-iface" },
59 action = uci.trigger.system_command("wifi"),
60 belongs_to = "network_restart"