added service executable check, added error message to gui for service load errors

This commit is contained in:
Blake J. Harnden 2018-06-19 09:19:49 -07:00
parent e80736061f
commit bf47e5fc0d
10 changed files with 90 additions and 39 deletions

View file

@ -10,6 +10,7 @@ class Bird(CoreService):
Bird router support
"""
name = "bird"
executables = ("bird",)
group = "BIRD"
depends = ()
dirs = ("/etc/bird",)
@ -91,6 +92,7 @@ class BirdService(CoreService):
"""
name = None
executables = ("bird",)
group = "BIRD"
depends = ("bird",)
dirs = ()