Exemplo n.º 1
0
Arquivo: api.py Projeto: 40a/jetfire
 def get(self, hostname):
     result = common.getAllGroupsForHost(hostname)
     if result:
         data = {"groups": [host["groupname"] for host in result]}
     else:
         data = {"groups": ""}
     return data
Exemplo n.º 2
0
 def get(self, hostname):
     result = common.getAllGroupsForHost(hostname)
     if result:
         data = {"groups": [host["groupname"] for host in result]}
     else:
         data = {"groups": ""}
     return data
Exemplo n.º 3
0
 def get_hostgroups(self, hostname):
     result = common.getAllGroupsForHost(hostname)
     groups = [item for item in result]
     grouplist = []
     # return empty list when host is not in a group
     if not groups:
         return grouplist
     else:
         for item in groups:
             grouplist.append(item["groupname"])
         return grouplist
Exemplo n.º 4
0
 def get_hostgroups(self, hostname):
     result = common.getAllGroupsForHost(hostname)
     groups = [ item for item in result]
     grouplist = []
     # return empty list when host is not in a group
     if not groups:
         return grouplist
     else:
         for item in groups:
             grouplist.append(item["groupname"])
         return grouplist
Exemplo n.º 5
0
 def get_hostgroups(self, hostname):
     '''retrieve all groups the host is a member of'''
     result = common.getAllGroupsForHost(hostname)
     groups = [item["groupname"] for item in result]
     return groups
Exemplo n.º 6
0
 def get_hostgroups(self, hostname):
     '''retrieve all groups the host is a member of'''
     result = common.getAllGroupsForHost(hostname)
     groups = [ item["groupname"] for item in result]
     return groups