service: Add support for DragonFly BSD

For now create a subclass of the FreeBsd class
pull/35848/head
Antonio Huete Jimenez 7 years ago committed by Brian Coca
parent 4319947e60
commit fae21f6aad

@ -1073,6 +1073,17 @@ class FreeBsdService(Service):
return ret
class DragonFlyBsdService(FreeBsdService):
"""
This is the DragonFly BSD Service manipulation class - it uses the /etc/rc.conf
file for controlling services started at boot and the 'service' binary to
check status and perform direct service manipulation.
"""
platform = 'DragonFly'
distribution = None
class OpenBsdService(Service):
"""
This is the OpenBSD Service manipulation class - it uses rcctl(8) or

Loading…
Cancel
Save