manage method in service

This commit is contained in:
Emmanuel Garette 2020-04-10 18:01:00 +02:00
parent 5a1c39e8a1
commit 822483ab70
2 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ class ServiceAnnotator:
def convert_service_to_family(self, service_name, service_family, service):
for elttype, values in vars(service).items():
if elttype in ['name', 'index']:
if elttype in ['name', 'index', 'method']:
continue
family = self.objectspace.family()
family.name = elttype + 's'

View File

@ -68,7 +68,7 @@
<!ELEMENT service ((port* | tcpwrapper* | ip* | interface* | package* | file* | digitalcertificate*)*) >
<!ATTLIST service name CDATA #REQUIRED>
<!ATTLIST service method (systemd|upstart|apache|network) "systemd">
<!ATTLIST service method (systemd|none) "systemd">
<!ELEMENT input (#PCDATA)>
<!ELEMENT profile (#PCDATA)>