repo stringlengths 7 55 | path stringlengths 4 223 | func_name stringlengths 1 134 | original_string stringlengths 75 104k | language stringclasses 1
value | code stringlengths 75 104k | code_tokens listlengths 19 28.4k | docstring stringlengths 1 46.9k | docstring_tokens listlengths 1 1.97k | sha stringlengths 40 40 | url stringlengths 87 315 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.secgroup_create | def secgroup_create(self, name, description):
'''
Create a security group
'''
nt_ks = self.compute_conn
nt_ks.security_groups.create(name, description)
ret = {'name': name, 'description': description}
return ret | python | def secgroup_create(self, name, description):
'''
Create a security group
'''
nt_ks = self.compute_conn
nt_ks.security_groups.create(name, description)
ret = {'name': name, 'description': description}
return ret | [
"def",
"secgroup_create",
"(",
"self",
",",
"name",
",",
"description",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"nt_ks",
".",
"security_groups",
".",
"create",
"(",
"name",
",",
"description",
")",
"ret",
"=",
"{",
"'name'",
":",
"name",
","... | Create a security group | [
"Create",
"a",
"security",
"group"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1083-L1090 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.secgroup_delete | def secgroup_delete(self, name):
'''
Delete a security group
'''
nt_ks = self.compute_conn
for item in nt_ks.security_groups.list():
if item.name == name:
nt_ks.security_groups.delete(item.id)
return {name: 'Deleted security group: {0}'... | python | def secgroup_delete(self, name):
'''
Delete a security group
'''
nt_ks = self.compute_conn
for item in nt_ks.security_groups.list():
if item.name == name:
nt_ks.security_groups.delete(item.id)
return {name: 'Deleted security group: {0}'... | [
"def",
"secgroup_delete",
"(",
"self",
",",
"name",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"for",
"item",
"in",
"nt_ks",
".",
"security_groups",
".",
"list",
"(",
")",
":",
"if",
"item",
".",
"name",
"==",
"name",
":",
"nt_ks",
".",
"se... | Delete a security group | [
"Delete",
"a",
"security",
"group"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1092-L1101 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.secgroup_list | def secgroup_list(self):
'''
List security groups
'''
nt_ks = self.compute_conn
ret = {}
for item in nt_ks.security_groups.list():
ret[item.name] = {
'name': item.name,
'description': item.description,
'id': item... | python | def secgroup_list(self):
'''
List security groups
'''
nt_ks = self.compute_conn
ret = {}
for item in nt_ks.security_groups.list():
ret[item.name] = {
'name': item.name,
'description': item.description,
'id': item... | [
"def",
"secgroup_list",
"(",
"self",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"ret",
"=",
"{",
"}",
"for",
"item",
"in",
"nt_ks",
".",
"security_groups",
".",
"list",
"(",
")",
":",
"ret",
"[",
"item",
".",
"name",
"]",
"=",
"{",
"'name... | List security groups | [
"List",
"security",
"groups"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1103-L1117 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova._item_list | def _item_list(self):
'''
List items
'''
nt_ks = self.compute_conn
ret = []
for item in nt_ks.items.list():
ret.append(item.__dict__)
return ret | python | def _item_list(self):
'''
List items
'''
nt_ks = self.compute_conn
ret = []
for item in nt_ks.items.list():
ret.append(item.__dict__)
return ret | [
"def",
"_item_list",
"(",
"self",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"ret",
"=",
"[",
"]",
"for",
"item",
"in",
"nt_ks",
".",
"items",
".",
"list",
"(",
")",
":",
"ret",
".",
"append",
"(",
"item",
".",
"__dict__",
")",
"return",
... | List items | [
"List",
"items"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1119-L1127 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova._network_show | def _network_show(self, name, network_lst):
'''
Parse the returned network list
'''
for net in network_lst:
if net.label == name:
return net.__dict__
return {} | python | def _network_show(self, name, network_lst):
'''
Parse the returned network list
'''
for net in network_lst:
if net.label == name:
return net.__dict__
return {} | [
"def",
"_network_show",
"(",
"self",
",",
"name",
",",
"network_lst",
")",
":",
"for",
"net",
"in",
"network_lst",
":",
"if",
"net",
".",
"label",
"==",
"name",
":",
"return",
"net",
".",
"__dict__",
"return",
"{",
"}"
] | Parse the returned network list | [
"Parse",
"the",
"returned",
"network",
"list"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1129-L1136 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.network_show | def network_show(self, name):
'''
Show network information
'''
nt_ks = self.compute_conn
net_list = nt_ks.networks.list()
return self._network_show(name, net_list) | python | def network_show(self, name):
'''
Show network information
'''
nt_ks = self.compute_conn
net_list = nt_ks.networks.list()
return self._network_show(name, net_list) | [
"def",
"network_show",
"(",
"self",
",",
"name",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"net_list",
"=",
"nt_ks",
".",
"networks",
".",
"list",
"(",
")",
"return",
"self",
".",
"_network_show",
"(",
"name",
",",
"net_list",
")"
] | Show network information | [
"Show",
"network",
"information"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1138-L1144 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.network_list | def network_list(self):
'''
List extra private networks
'''
nt_ks = self.compute_conn
return [network.__dict__ for network in nt_ks.networks.list()] | python | def network_list(self):
'''
List extra private networks
'''
nt_ks = self.compute_conn
return [network.__dict__ for network in nt_ks.networks.list()] | [
"def",
"network_list",
"(",
"self",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"return",
"[",
"network",
".",
"__dict__",
"for",
"network",
"in",
"nt_ks",
".",
"networks",
".",
"list",
"(",
")",
"]"
] | List extra private networks | [
"List",
"extra",
"private",
"networks"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1146-L1151 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova._sanatize_network_params | def _sanatize_network_params(self, kwargs):
'''
Sanatize novaclient network parameters
'''
params = [
'label', 'bridge', 'bridge_interface', 'cidr', 'cidr_v6', 'dns1',
'dns2', 'fixed_cidr', 'gateway', 'gateway_v6', 'multi_host',
'priority', 'project_id... | python | def _sanatize_network_params(self, kwargs):
'''
Sanatize novaclient network parameters
'''
params = [
'label', 'bridge', 'bridge_interface', 'cidr', 'cidr_v6', 'dns1',
'dns2', 'fixed_cidr', 'gateway', 'gateway_v6', 'multi_host',
'priority', 'project_id... | [
"def",
"_sanatize_network_params",
"(",
"self",
",",
"kwargs",
")",
":",
"params",
"=",
"[",
"'label'",
",",
"'bridge'",
",",
"'bridge_interface'",
",",
"'cidr'",
",",
"'cidr_v6'",
",",
"'dns1'",
",",
"'dns2'",
",",
"'fixed_cidr'",
",",
"'gateway'",
",",
"'g... | Sanatize novaclient network parameters | [
"Sanatize",
"novaclient",
"network",
"parameters"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1153-L1166 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.network_create | def network_create(self, name, **kwargs):
'''
Create extra private network
'''
nt_ks = self.compute_conn
kwargs['label'] = name
kwargs = self._sanatize_network_params(kwargs)
net = nt_ks.networks.create(**kwargs)
return net.__dict__ | python | def network_create(self, name, **kwargs):
'''
Create extra private network
'''
nt_ks = self.compute_conn
kwargs['label'] = name
kwargs = self._sanatize_network_params(kwargs)
net = nt_ks.networks.create(**kwargs)
return net.__dict__ | [
"def",
"network_create",
"(",
"self",
",",
"name",
",",
"*",
"*",
"kwargs",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"kwargs",
"[",
"'label'",
"]",
"=",
"name",
"kwargs",
"=",
"self",
".",
"_sanatize_network_params",
"(",
"kwargs",
")",
"net"... | Create extra private network | [
"Create",
"extra",
"private",
"network"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1168-L1176 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.virtual_interface_list | def virtual_interface_list(self, name):
'''
Get virtual interfaces on slice
'''
nt_ks = self.compute_conn
nets = nt_ks.virtual_interfaces.list(self._server_uuid_from_name(name))
return [network.__dict__ for network in nets] | python | def virtual_interface_list(self, name):
'''
Get virtual interfaces on slice
'''
nt_ks = self.compute_conn
nets = nt_ks.virtual_interfaces.list(self._server_uuid_from_name(name))
return [network.__dict__ for network in nets] | [
"def",
"virtual_interface_list",
"(",
"self",
",",
"name",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"nets",
"=",
"nt_ks",
".",
"virtual_interfaces",
".",
"list",
"(",
"self",
".",
"_server_uuid_from_name",
"(",
"name",
")",
")",
"return",
"[",
... | Get virtual interfaces on slice | [
"Get",
"virtual",
"interfaces",
"on",
"slice"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1184-L1190 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.virtual_interface_create | def virtual_interface_create(self, name, net_name):
'''
Add an interfaces to a slice
'''
nt_ks = self.compute_conn
serverid = self._server_uuid_from_name(name)
networkid = self.network_show(net_name).get('id', None)
if networkid is None:
return {net_na... | python | def virtual_interface_create(self, name, net_name):
'''
Add an interfaces to a slice
'''
nt_ks = self.compute_conn
serverid = self._server_uuid_from_name(name)
networkid = self.network_show(net_name).get('id', None)
if networkid is None:
return {net_na... | [
"def",
"virtual_interface_create",
"(",
"self",
",",
"name",
",",
"net_name",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"serverid",
"=",
"self",
".",
"_server_uuid_from_name",
"(",
"name",
")",
"networkid",
"=",
"self",
".",
"network_show",
"(",
"... | Add an interfaces to a slice | [
"Add",
"an",
"interfaces",
"to",
"a",
"slice"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1192-L1202 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.floating_ip_pool_list | def floating_ip_pool_list(self):
'''
List all floating IP pools
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
pools = nt_ks.floating_ip_pools.list()
response = {}
for pool in pools:
response[pool.name] = {
'name': po... | python | def floating_ip_pool_list(self):
'''
List all floating IP pools
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
pools = nt_ks.floating_ip_pools.list()
response = {}
for pool in pools:
response[pool.name] = {
'name': po... | [
"def",
"floating_ip_pool_list",
"(",
"self",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"pools",
"=",
"nt_ks",
".",
"floating_ip_pools",
".",
"list",
"(",
")",
"response",
"=",
"{",
"}",
"for",
"pool",
"in",
"pools",
":",
"response",
"[",
"pool... | List all floating IP pools
.. versionadded:: 2016.3.0 | [
"List",
"all",
"floating",
"IP",
"pools"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1204-L1217 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.floating_ip_list | def floating_ip_list(self):
'''
List floating IPs
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
floating_ips = nt_ks.floating_ips.list()
response = {}
for floating_ip in floating_ips:
response[floating_ip.ip] = {
'ip... | python | def floating_ip_list(self):
'''
List floating IPs
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
floating_ips = nt_ks.floating_ips.list()
response = {}
for floating_ip in floating_ips:
response[floating_ip.ip] = {
'ip... | [
"def",
"floating_ip_list",
"(",
"self",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"floating_ips",
"=",
"nt_ks",
".",
"floating_ips",
".",
"list",
"(",
")",
"response",
"=",
"{",
"}",
"for",
"floating_ip",
"in",
"floating_ips",
":",
"response",
"... | List floating IPs
.. versionadded:: 2016.3.0 | [
"List",
"floating",
"IPs"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1219-L1236 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.floating_ip_create | def floating_ip_create(self, pool=None):
'''
Allocate a floating IP
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
floating_ip = nt_ks.floating_ips.create(pool)
response = {
'ip': floating_ip.ip,
'fixed_ip': floating_ip.fixed_ip,... | python | def floating_ip_create(self, pool=None):
'''
Allocate a floating IP
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
floating_ip = nt_ks.floating_ips.create(pool)
response = {
'ip': floating_ip.ip,
'fixed_ip': floating_ip.fixed_ip,... | [
"def",
"floating_ip_create",
"(",
"self",
",",
"pool",
"=",
"None",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"floating_ip",
"=",
"nt_ks",
".",
"floating_ips",
".",
"create",
"(",
"pool",
")",
"response",
"=",
"{",
"'ip'",
":",
"floating_ip",
... | Allocate a floating IP
.. versionadded:: 2016.3.0 | [
"Allocate",
"a",
"floating",
"IP"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1258-L1273 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.floating_ip_delete | def floating_ip_delete(self, floating_ip):
'''
De-allocate a floating IP
.. versionadded:: 2016.3.0
'''
ip = self.floating_ip_show(floating_ip)
nt_ks = self.compute_conn
return nt_ks.floating_ips.delete(ip) | python | def floating_ip_delete(self, floating_ip):
'''
De-allocate a floating IP
.. versionadded:: 2016.3.0
'''
ip = self.floating_ip_show(floating_ip)
nt_ks = self.compute_conn
return nt_ks.floating_ips.delete(ip) | [
"def",
"floating_ip_delete",
"(",
"self",
",",
"floating_ip",
")",
":",
"ip",
"=",
"self",
".",
"floating_ip_show",
"(",
"floating_ip",
")",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"return",
"nt_ks",
".",
"floating_ips",
".",
"delete",
"(",
"ip",
")"
] | De-allocate a floating IP
.. versionadded:: 2016.3.0 | [
"De",
"-",
"allocate",
"a",
"floating",
"IP"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1275-L1283 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.floating_ip_associate | def floating_ip_associate(self, server_name, floating_ip):
'''
Associate floating IP address to server
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
server_ = self.server_by_name(server_name)
server = nt_ks.servers.get(server_.__dict__['id'])
s... | python | def floating_ip_associate(self, server_name, floating_ip):
'''
Associate floating IP address to server
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
server_ = self.server_by_name(server_name)
server = nt_ks.servers.get(server_.__dict__['id'])
s... | [
"def",
"floating_ip_associate",
"(",
"self",
",",
"server_name",
",",
"floating_ip",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"server_",
"=",
"self",
".",
"server_by_name",
"(",
"server_name",
")",
"server",
"=",
"nt_ks",
".",
"servers",
".",
"ge... | Associate floating IP address to server
.. versionadded:: 2016.3.0 | [
"Associate",
"floating",
"IP",
"address",
"to",
"server"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1285-L1295 | train |
saltstack/salt | salt/utils/openstack/nova.py | SaltNova.floating_ip_disassociate | def floating_ip_disassociate(self, server_name, floating_ip):
'''
Disassociate a floating IP from server
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
server_ = self.server_by_name(server_name)
server = nt_ks.servers.get(server_.__dict__['id'])
... | python | def floating_ip_disassociate(self, server_name, floating_ip):
'''
Disassociate a floating IP from server
.. versionadded:: 2016.3.0
'''
nt_ks = self.compute_conn
server_ = self.server_by_name(server_name)
server = nt_ks.servers.get(server_.__dict__['id'])
... | [
"def",
"floating_ip_disassociate",
"(",
"self",
",",
"server_name",
",",
"floating_ip",
")",
":",
"nt_ks",
"=",
"self",
".",
"compute_conn",
"server_",
"=",
"self",
".",
"server_by_name",
"(",
"server_name",
")",
"server",
"=",
"nt_ks",
".",
"servers",
".",
... | Disassociate a floating IP from server
.. versionadded:: 2016.3.0 | [
"Disassociate",
"a",
"floating",
"IP",
"from",
"server"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/nova.py#L1297-L1307 | train |
saltstack/salt | salt/version.py | dependency_information | def dependency_information(include_salt_cloud=False):
'''
Report versions of library dependencies.
'''
libs = [
('Python', None, sys.version.rsplit('\n')[0].strip()),
('Jinja2', 'jinja2', '__version__'),
('M2Crypto', 'M2Crypto', 'version'),
('msgpack-python', 'msgpack', '... | python | def dependency_information(include_salt_cloud=False):
'''
Report versions of library dependencies.
'''
libs = [
('Python', None, sys.version.rsplit('\n')[0].strip()),
('Jinja2', 'jinja2', '__version__'),
('M2Crypto', 'M2Crypto', 'version'),
('msgpack-python', 'msgpack', '... | [
"def",
"dependency_information",
"(",
"include_salt_cloud",
"=",
"False",
")",
":",
"libs",
"=",
"[",
"(",
"'Python'",
",",
"None",
",",
"sys",
".",
"version",
".",
"rsplit",
"(",
"'\\n'",
")",
"[",
"0",
"]",
".",
"strip",
"(",
")",
")",
",",
"(",
... | Report versions of library dependencies. | [
"Report",
"versions",
"of",
"library",
"dependencies",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/version.py#L574-L624 | train |
saltstack/salt | salt/version.py | system_information | def system_information():
'''
Report system versions.
'''
def system_version():
'''
Return host system version.
'''
lin_ver = linux_distribution()
mac_ver = platform.mac_ver()
win_ver = platform.win32_ver()
if lin_ver[0]:
return ' '.jo... | python | def system_information():
'''
Report system versions.
'''
def system_version():
'''
Return host system version.
'''
lin_ver = linux_distribution()
mac_ver = platform.mac_ver()
win_ver = platform.win32_ver()
if lin_ver[0]:
return ' '.jo... | [
"def",
"system_information",
"(",
")",
":",
"def",
"system_version",
"(",
")",
":",
"'''\n Return host system version.\n '''",
"lin_ver",
"=",
"linux_distribution",
"(",
")",
"mac_ver",
"=",
"platform",
".",
"mac_ver",
"(",
")",
"win_ver",
"=",
"platfo... | Report system versions. | [
"Report",
"system",
"versions",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/version.py#L627-L704 | train |
saltstack/salt | salt/version.py | versions_information | def versions_information(include_salt_cloud=False):
'''
Report the versions of dependent software.
'''
salt_info = list(salt_information())
lib_info = list(dependency_information(include_salt_cloud))
sys_info = list(system_information())
return {'Salt Version': dict(salt_info),
... | python | def versions_information(include_salt_cloud=False):
'''
Report the versions of dependent software.
'''
salt_info = list(salt_information())
lib_info = list(dependency_information(include_salt_cloud))
sys_info = list(system_information())
return {'Salt Version': dict(salt_info),
... | [
"def",
"versions_information",
"(",
"include_salt_cloud",
"=",
"False",
")",
":",
"salt_info",
"=",
"list",
"(",
"salt_information",
"(",
")",
")",
"lib_info",
"=",
"list",
"(",
"dependency_information",
"(",
"include_salt_cloud",
")",
")",
"sys_info",
"=",
"lis... | Report the versions of dependent software. | [
"Report",
"the",
"versions",
"of",
"dependent",
"software",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/version.py#L707-L717 | train |
saltstack/salt | salt/version.py | versions_report | def versions_report(include_salt_cloud=False):
'''
Yield each version properly formatted for console output.
'''
ver_info = versions_information(include_salt_cloud)
lib_pad = max(len(name) for name in ver_info['Dependency Versions'])
sys_pad = max(len(name) for name in ver_info['System Versions... | python | def versions_report(include_salt_cloud=False):
'''
Yield each version properly formatted for console output.
'''
ver_info = versions_information(include_salt_cloud)
lib_pad = max(len(name) for name in ver_info['Dependency Versions'])
sys_pad = max(len(name) for name in ver_info['System Versions... | [
"def",
"versions_report",
"(",
"include_salt_cloud",
"=",
"False",
")",
":",
"ver_info",
"=",
"versions_information",
"(",
"include_salt_cloud",
")",
"lib_pad",
"=",
"max",
"(",
"len",
"(",
"name",
")",
"for",
"name",
"in",
"ver_info",
"[",
"'Dependency Versions... | Yield each version properly formatted for console output. | [
"Yield",
"each",
"version",
"properly",
"formatted",
"for",
"console",
"output",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/version.py#L720-L743 | train |
saltstack/salt | salt/version.py | msi_conformant_version | def msi_conformant_version():
'''
An msi installer uninstalls/replaces a lower "internal version" of itself.
"internal version" is ivMAJOR.ivMINOR.ivBUILD with max values 255.255.65535.
Using the build nr allows continuous integration of the installer.
"Display version" is indipendent and free forma... | python | def msi_conformant_version():
'''
An msi installer uninstalls/replaces a lower "internal version" of itself.
"internal version" is ivMAJOR.ivMINOR.ivBUILD with max values 255.255.65535.
Using the build nr allows continuous integration of the installer.
"Display version" is indipendent and free forma... | [
"def",
"msi_conformant_version",
"(",
")",
":",
"short_year",
"=",
"int",
"(",
"six",
".",
"text_type",
"(",
"__saltstack_version__",
".",
"major",
")",
"[",
"2",
":",
"]",
")",
"month",
"=",
"__saltstack_version__",
".",
"minor",
"bugfix",
"=",
"__saltstack... | An msi installer uninstalls/replaces a lower "internal version" of itself.
"internal version" is ivMAJOR.ivMINOR.ivBUILD with max values 255.255.65535.
Using the build nr allows continuous integration of the installer.
"Display version" is indipendent and free format: Year.Month.Bugfix as in Salt 2016.11.3.... | [
"An",
"msi",
"installer",
"uninstalls",
"/",
"replaces",
"a",
"lower",
"internal",
"version",
"of",
"itself",
".",
"internal",
"version",
"is",
"ivMAJOR",
".",
"ivMINOR",
".",
"ivBUILD",
"with",
"max",
"values",
"255",
".",
"255",
".",
"65535",
".",
"Using... | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/version.py#L746-L779 | train |
saltstack/salt | salt/states/winrepo.py | genrepo | def genrepo(name, force=False, allow_empty=False):
'''
Refresh the winrepo.p file of the repository (salt-run winrepo.genrepo)
If ``force`` is ``True`` no checks will be made and the repository will be
generated if ``allow_empty`` is ``True`` then the state will not return an
error if there are 0 p... | python | def genrepo(name, force=False, allow_empty=False):
'''
Refresh the winrepo.p file of the repository (salt-run winrepo.genrepo)
If ``force`` is ``True`` no checks will be made and the repository will be
generated if ``allow_empty`` is ``True`` then the state will not return an
error if there are 0 p... | [
"def",
"genrepo",
"(",
"name",
",",
"force",
"=",
"False",
",",
"allow_empty",
"=",
"False",
")",
":",
"ret",
"=",
"{",
"'name'",
":",
"name",
",",
"'result'",
":",
"True",
",",
"'changes'",
":",
"{",
"}",
",",
"'comment'",
":",
"''",
"}",
"master_... | Refresh the winrepo.p file of the repository (salt-run winrepo.genrepo)
If ``force`` is ``True`` no checks will be made and the repository will be
generated if ``allow_empty`` is ``True`` then the state will not return an
error if there are 0 packages,
.. note::
This state only loads on minio... | [
"Refresh",
"the",
"winrepo",
".",
"p",
"file",
"of",
"the",
"repository",
"(",
"salt",
"-",
"run",
"winrepo",
".",
"genrepo",
")"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/winrepo.py#L23-L95 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.process | def process(self, config, grains):
'''
Process the configured beacons
The config must be a list and looks like this in yaml
.. code_block:: yaml
beacons:
inotify:
- files:
- /etc/fstab: {}
- /var/cache/fo... | python | def process(self, config, grains):
'''
Process the configured beacons
The config must be a list and looks like this in yaml
.. code_block:: yaml
beacons:
inotify:
- files:
- /etc/fstab: {}
- /var/cache/fo... | [
"def",
"process",
"(",
"self",
",",
"config",
",",
"grains",
")",
":",
"ret",
"=",
"[",
"]",
"b_config",
"=",
"copy",
".",
"deepcopy",
"(",
"config",
")",
"if",
"'enabled'",
"in",
"b_config",
"and",
"not",
"b_config",
"[",
"'enabled'",
"]",
":",
"ret... | Process the configured beacons
The config must be a list and looks like this in yaml
.. code_block:: yaml
beacons:
inotify:
- files:
- /etc/fstab: {}
- /var/cache/foo: {} | [
"Process",
"the",
"configured",
"beacons"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L31-L131 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon._trim_config | def _trim_config(self, b_config, mod, key):
'''
Take a beacon configuration and strip out the interval bits
'''
if isinstance(b_config[mod], list):
self._remove_list_item(b_config[mod], key)
elif isinstance(b_config[mod], dict):
b_config[mod].pop(key)
... | python | def _trim_config(self, b_config, mod, key):
'''
Take a beacon configuration and strip out the interval bits
'''
if isinstance(b_config[mod], list):
self._remove_list_item(b_config[mod], key)
elif isinstance(b_config[mod], dict):
b_config[mod].pop(key)
... | [
"def",
"_trim_config",
"(",
"self",
",",
"b_config",
",",
"mod",
",",
"key",
")",
":",
"if",
"isinstance",
"(",
"b_config",
"[",
"mod",
"]",
",",
"list",
")",
":",
"self",
".",
"_remove_list_item",
"(",
"b_config",
"[",
"mod",
"]",
",",
"key",
")",
... | Take a beacon configuration and strip out the interval bits | [
"Take",
"a",
"beacon",
"configuration",
"and",
"strip",
"out",
"the",
"interval",
"bits"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L133-L141 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon._determine_beacon_config | def _determine_beacon_config(self, current_beacon_config, key):
'''
Process a beacon configuration to determine its interval
'''
interval = False
if isinstance(current_beacon_config, dict):
interval = current_beacon_config.get(key, False)
return interval | python | def _determine_beacon_config(self, current_beacon_config, key):
'''
Process a beacon configuration to determine its interval
'''
interval = False
if isinstance(current_beacon_config, dict):
interval = current_beacon_config.get(key, False)
return interval | [
"def",
"_determine_beacon_config",
"(",
"self",
",",
"current_beacon_config",
",",
"key",
")",
":",
"interval",
"=",
"False",
"if",
"isinstance",
"(",
"current_beacon_config",
",",
"dict",
")",
":",
"interval",
"=",
"current_beacon_config",
".",
"get",
"(",
"key... | Process a beacon configuration to determine its interval | [
"Process",
"a",
"beacon",
"configuration",
"to",
"determine",
"its",
"interval"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L143-L152 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon._process_interval | def _process_interval(self, mod, interval):
'''
Process beacons with intervals
Return True if a beacon should be run on this loop
'''
log.trace('Processing interval %s for beacon mod %s', interval, mod)
loop_interval = self.opts['loop_interval']
if mod in self.int... | python | def _process_interval(self, mod, interval):
'''
Process beacons with intervals
Return True if a beacon should be run on this loop
'''
log.trace('Processing interval %s for beacon mod %s', interval, mod)
loop_interval = self.opts['loop_interval']
if mod in self.int... | [
"def",
"_process_interval",
"(",
"self",
",",
"mod",
",",
"interval",
")",
":",
"log",
".",
"trace",
"(",
"'Processing interval %s for beacon mod %s'",
",",
"interval",
",",
"mod",
")",
"loop_interval",
"=",
"self",
".",
"opts",
"[",
"'loop_interval'",
"]",
"i... | Process beacons with intervals
Return True if a beacon should be run on this loop | [
"Process",
"beacons",
"with",
"intervals",
"Return",
"True",
"if",
"a",
"beacon",
"should",
"be",
"run",
"on",
"this",
"loop"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L154-L173 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon._get_index | def _get_index(self, beacon_config, label):
'''
Return the index of a labeled config item in the beacon config, -1 if the index is not found
'''
indexes = [index for index, item in enumerate(beacon_config) if label in item]
if not indexes:
return -1
else:
... | python | def _get_index(self, beacon_config, label):
'''
Return the index of a labeled config item in the beacon config, -1 if the index is not found
'''
indexes = [index for index, item in enumerate(beacon_config) if label in item]
if not indexes:
return -1
else:
... | [
"def",
"_get_index",
"(",
"self",
",",
"beacon_config",
",",
"label",
")",
":",
"indexes",
"=",
"[",
"index",
"for",
"index",
",",
"item",
"in",
"enumerate",
"(",
"beacon_config",
")",
"if",
"label",
"in",
"item",
"]",
"if",
"not",
"indexes",
":",
"ret... | Return the index of a labeled config item in the beacon config, -1 if the index is not found | [
"Return",
"the",
"index",
"of",
"a",
"labeled",
"config",
"item",
"in",
"the",
"beacon",
"config",
"-",
"1",
"if",
"the",
"index",
"is",
"not",
"found"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L175-L184 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon._remove_list_item | def _remove_list_item(self, beacon_config, label):
'''
Remove an item from a beacon config list
'''
index = self._get_index(beacon_config, label)
del beacon_config[index] | python | def _remove_list_item(self, beacon_config, label):
'''
Remove an item from a beacon config list
'''
index = self._get_index(beacon_config, label)
del beacon_config[index] | [
"def",
"_remove_list_item",
"(",
"self",
",",
"beacon_config",
",",
"label",
")",
":",
"index",
"=",
"self",
".",
"_get_index",
"(",
"beacon_config",
",",
"label",
")",
"del",
"beacon_config",
"[",
"index",
"]"
] | Remove an item from a beacon config list | [
"Remove",
"an",
"item",
"from",
"a",
"beacon",
"config",
"list"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L186-L192 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon._update_enabled | def _update_enabled(self, name, enabled_value):
'''
Update whether an individual beacon is enabled
'''
if isinstance(self.opts['beacons'][name], dict):
# Backwards compatibility
self.opts['beacons'][name]['enabled'] = enabled_value
else:
enabl... | python | def _update_enabled(self, name, enabled_value):
'''
Update whether an individual beacon is enabled
'''
if isinstance(self.opts['beacons'][name], dict):
# Backwards compatibility
self.opts['beacons'][name]['enabled'] = enabled_value
else:
enabl... | [
"def",
"_update_enabled",
"(",
"self",
",",
"name",
",",
"enabled_value",
")",
":",
"if",
"isinstance",
"(",
"self",
".",
"opts",
"[",
"'beacons'",
"]",
"[",
"name",
"]",
",",
"dict",
")",
":",
"# Backwards compatibility",
"self",
".",
"opts",
"[",
"'bea... | Update whether an individual beacon is enabled | [
"Update",
"whether",
"an",
"individual",
"beacon",
"is",
"enabled"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L194-L207 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon._get_beacons | def _get_beacons(self,
include_opts=True,
include_pillar=True):
'''
Return the beacons data structure
'''
beacons = {}
if include_pillar:
pillar_beacons = self.opts.get('pillar', {}).get('beacons', {})
if not isins... | python | def _get_beacons(self,
include_opts=True,
include_pillar=True):
'''
Return the beacons data structure
'''
beacons = {}
if include_pillar:
pillar_beacons = self.opts.get('pillar', {}).get('beacons', {})
if not isins... | [
"def",
"_get_beacons",
"(",
"self",
",",
"include_opts",
"=",
"True",
",",
"include_pillar",
"=",
"True",
")",
":",
"beacons",
"=",
"{",
"}",
"if",
"include_pillar",
":",
"pillar_beacons",
"=",
"self",
".",
"opts",
".",
"get",
"(",
"'pillar'",
",",
"{",
... | Return the beacons data structure | [
"Return",
"the",
"beacons",
"data",
"structure"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L209-L226 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.list_beacons | def list_beacons(self,
include_pillar=True,
include_opts=True):
'''
List the beacon items
include_pillar: Whether to include beacons that are
configured in pillar, default is True.
include_opts: Whether to include beac... | python | def list_beacons(self,
include_pillar=True,
include_opts=True):
'''
List the beacon items
include_pillar: Whether to include beacons that are
configured in pillar, default is True.
include_opts: Whether to include beac... | [
"def",
"list_beacons",
"(",
"self",
",",
"include_pillar",
"=",
"True",
",",
"include_opts",
"=",
"True",
")",
":",
"beacons",
"=",
"self",
".",
"_get_beacons",
"(",
"include_pillar",
",",
"include_opts",
")",
"# Fire the complete event back along with the list of bea... | List the beacon items
include_pillar: Whether to include beacons that are
configured in pillar, default is True.
include_opts: Whether to include beacons that are
configured in opts, default is True. | [
"List",
"the",
"beacon",
"items"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L228-L247 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.list_available_beacons | def list_available_beacons(self):
'''
List the available beacons
'''
_beacons = ['{0}'.format(_beacon.replace('.beacon', ''))
for _beacon in self.beacons if '.beacon' in _beacon]
# Fire the complete event back along with the list of beacons
evt = salt... | python | def list_available_beacons(self):
'''
List the available beacons
'''
_beacons = ['{0}'.format(_beacon.replace('.beacon', ''))
for _beacon in self.beacons if '.beacon' in _beacon]
# Fire the complete event back along with the list of beacons
evt = salt... | [
"def",
"list_available_beacons",
"(",
"self",
")",
":",
"_beacons",
"=",
"[",
"'{0}'",
".",
"format",
"(",
"_beacon",
".",
"replace",
"(",
"'.beacon'",
",",
"''",
")",
")",
"for",
"_beacon",
"in",
"self",
".",
"beacons",
"if",
"'.beacon'",
"in",
"_beacon... | List the available beacons | [
"List",
"the",
"available",
"beacons"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L249-L261 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.validate_beacon | def validate_beacon(self, name, beacon_data):
'''
Return available beacon functions
'''
validate_str = '{}.validate'.format(name)
# Run the validate function if it's available,
# otherwise there is a warning about it being missing
if validate_str in self.beacons:
... | python | def validate_beacon(self, name, beacon_data):
'''
Return available beacon functions
'''
validate_str = '{}.validate'.format(name)
# Run the validate function if it's available,
# otherwise there is a warning about it being missing
if validate_str in self.beacons:
... | [
"def",
"validate_beacon",
"(",
"self",
",",
"name",
",",
"beacon_data",
")",
":",
"validate_str",
"=",
"'{}.validate'",
".",
"format",
"(",
"name",
")",
"# Run the validate function if it's available,",
"# otherwise there is a warning about it being missing",
"if",
"validat... | Return available beacon functions | [
"Return",
"available",
"beacon",
"functions"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L263-L286 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.add_beacon | def add_beacon(self, name, beacon_data):
'''
Add a beacon item
'''
data = {}
data[name] = beacon_data
if name in self._get_beacons(include_opts=False):
comment = 'Cannot update beacon item {0}, ' \
'because it is configured in pillar.'.... | python | def add_beacon(self, name, beacon_data):
'''
Add a beacon item
'''
data = {}
data[name] = beacon_data
if name in self._get_beacons(include_opts=False):
comment = 'Cannot update beacon item {0}, ' \
'because it is configured in pillar.'.... | [
"def",
"add_beacon",
"(",
"self",
",",
"name",
",",
"beacon_data",
")",
":",
"data",
"=",
"{",
"}",
"data",
"[",
"name",
"]",
"=",
"beacon_data",
"if",
"name",
"in",
"self",
".",
"_get_beacons",
"(",
"include_opts",
"=",
"False",
")",
":",
"comment",
... | Add a beacon item | [
"Add",
"a",
"beacon",
"item"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L288-L315 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.delete_beacon | def delete_beacon(self, name):
'''
Delete a beacon item
'''
if name in self._get_beacons(include_opts=False):
comment = 'Cannot delete beacon item {0}, ' \
'it is configured in pillar.'.format(name)
complete = False
else:
... | python | def delete_beacon(self, name):
'''
Delete a beacon item
'''
if name in self._get_beacons(include_opts=False):
comment = 'Cannot delete beacon item {0}, ' \
'it is configured in pillar.'.format(name)
complete = False
else:
... | [
"def",
"delete_beacon",
"(",
"self",
",",
"name",
")",
":",
"if",
"name",
"in",
"self",
".",
"_get_beacons",
"(",
"include_opts",
"=",
"False",
")",
":",
"comment",
"=",
"'Cannot delete beacon item {0}, '",
"'it is configured in pillar.'",
".",
"format",
"(",
"n... | Delete a beacon item | [
"Delete",
"a",
"beacon",
"item"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L342-L365 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.enable_beacons | def enable_beacons(self):
'''
Enable beacons
'''
self.opts['beacons']['enabled'] = True
# Fire the complete event back along with updated list of beacons
evt = salt.utils.event.get_event('minion', opts=self.opts)
evt.fire_event({'complete': True, 'beacons': self... | python | def enable_beacons(self):
'''
Enable beacons
'''
self.opts['beacons']['enabled'] = True
# Fire the complete event back along with updated list of beacons
evt = salt.utils.event.get_event('minion', opts=self.opts)
evt.fire_event({'complete': True, 'beacons': self... | [
"def",
"enable_beacons",
"(",
"self",
")",
":",
"self",
".",
"opts",
"[",
"'beacons'",
"]",
"[",
"'enabled'",
"]",
"=",
"True",
"# Fire the complete event back along with updated list of beacons",
"evt",
"=",
"salt",
".",
"utils",
".",
"event",
".",
"get_event",
... | Enable beacons | [
"Enable",
"beacons"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L367-L379 | train |
saltstack/salt | salt/beacons/__init__.py | Beacon.disable_beacons | def disable_beacons(self):
'''
Enable beacons
'''
self.opts['beacons']['enabled'] = False
# Fire the complete event back along with updated list of beacons
evt = salt.utils.event.get_event('minion', opts=self.opts)
evt.fire_event({'complete': True, 'beacons': se... | python | def disable_beacons(self):
'''
Enable beacons
'''
self.opts['beacons']['enabled'] = False
# Fire the complete event back along with updated list of beacons
evt = salt.utils.event.get_event('minion', opts=self.opts)
evt.fire_event({'complete': True, 'beacons': se... | [
"def",
"disable_beacons",
"(",
"self",
")",
":",
"self",
".",
"opts",
"[",
"'beacons'",
"]",
"[",
"'enabled'",
"]",
"=",
"False",
"# Fire the complete event back along with updated list of beacons",
"evt",
"=",
"salt",
".",
"utils",
".",
"event",
".",
"get_event",... | Enable beacons | [
"Enable",
"beacons"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/beacons/__init__.py#L381-L393 | train |
saltstack/salt | salt/modules/macpackage.py | install | def install(pkg, target='LocalSystem', store=False, allow_untrusted=False):
'''
Install a pkg file
Args:
pkg (str): The package to install
target (str): The target in which to install the package to
store (bool): Should the package be installed as if it was from the
... | python | def install(pkg, target='LocalSystem', store=False, allow_untrusted=False):
'''
Install a pkg file
Args:
pkg (str): The package to install
target (str): The target in which to install the package to
store (bool): Should the package be installed as if it was from the
... | [
"def",
"install",
"(",
"pkg",
",",
"target",
"=",
"'LocalSystem'",
",",
"store",
"=",
"False",
",",
"allow_untrusted",
"=",
"False",
")",
":",
"if",
"'*.'",
"not",
"in",
"pkg",
":",
"# If we use wildcards, we cannot use quotes",
"pkg",
"=",
"_quote",
"(",
"p... | Install a pkg file
Args:
pkg (str): The package to install
target (str): The target in which to install the package to
store (bool): Should the package be installed as if it was from the
store?
allow_untrusted (bool): Allow the installation of untrusted package... | [
"Install",
"a",
"pkg",
"file"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/macpackage.py#L43-L81 | train |
saltstack/salt | salt/modules/macpackage.py | install_app | def install_app(app, target='/Applications/'):
'''
Install an app file by moving it into the specified Applications directory
Args:
app (str): The location of the .app file
target (str): The target in which to install the package to
Default is ''/Applications/''
R... | python | def install_app(app, target='/Applications/'):
'''
Install an app file by moving it into the specified Applications directory
Args:
app (str): The location of the .app file
target (str): The target in which to install the package to
Default is ''/Applications/''
R... | [
"def",
"install_app",
"(",
"app",
",",
"target",
"=",
"'/Applications/'",
")",
":",
"if",
"target",
"[",
"-",
"4",
":",
"]",
"!=",
"'.app'",
":",
"if",
"app",
"[",
"-",
"1",
":",
"]",
"==",
"'/'",
":",
"base_app",
"=",
"os",
".",
"path",
".",
"... | Install an app file by moving it into the specified Applications directory
Args:
app (str): The location of the .app file
target (str): The target in which to install the package to
Default is ''/Applications/''
Returns:
str: The results of the rsync command
... | [
"Install",
"an",
"app",
"file",
"by",
"moving",
"it",
"into",
"the",
"specified",
"Applications",
"directory"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/macpackage.py#L84-L115 | train |
saltstack/salt | salt/modules/macpackage.py | mount | def mount(dmg):
'''
Attempt to mount a dmg file to a temporary location and return the
location of the pkg file inside
Args:
dmg (str): The location of the dmg file to mount
Returns:
tuple: Tuple containing the results of the command along with the mount
point
C... | python | def mount(dmg):
'''
Attempt to mount a dmg file to a temporary location and return the
location of the pkg file inside
Args:
dmg (str): The location of the dmg file to mount
Returns:
tuple: Tuple containing the results of the command along with the mount
point
C... | [
"def",
"mount",
"(",
"dmg",
")",
":",
"temp_dir",
"=",
"__salt__",
"[",
"'temp.dir'",
"]",
"(",
"prefix",
"=",
"'dmg-'",
")",
"cmd",
"=",
"'hdiutil attach -readonly -nobrowse -mountpoint {0} \"{1}\"'",
".",
"format",
"(",
"temp_dir",
",",
"dmg",
")",
"return",
... | Attempt to mount a dmg file to a temporary location and return the
location of the pkg file inside
Args:
dmg (str): The location of the dmg file to mount
Returns:
tuple: Tuple containing the results of the command along with the mount
point
CLI Example:
.. code-blo... | [
"Attempt",
"to",
"mount",
"a",
"dmg",
"file",
"to",
"a",
"temporary",
"location",
"and",
"return",
"the",
"location",
"of",
"the",
"pkg",
"file",
"inside"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/macpackage.py#L138-L161 | train |
saltstack/salt | salt/modules/macpackage.py | get_pkg_id | def get_pkg_id(pkg):
'''
Attempt to get the package ID from a .pkg file
Args:
pkg (str): The location of the pkg file
Returns:
list: List of all of the package IDs
CLI Example:
.. code-block:: bash
salt '*' macpackage.get_pkg_id /tmp/test.pkg
'''
pkg = _quote... | python | def get_pkg_id(pkg):
'''
Attempt to get the package ID from a .pkg file
Args:
pkg (str): The location of the pkg file
Returns:
list: List of all of the package IDs
CLI Example:
.. code-block:: bash
salt '*' macpackage.get_pkg_id /tmp/test.pkg
'''
pkg = _quote... | [
"def",
"get_pkg_id",
"(",
"pkg",
")",
":",
"pkg",
"=",
"_quote",
"(",
"pkg",
")",
"package_ids",
"=",
"[",
"]",
"# Create temp directory",
"temp_dir",
"=",
"__salt__",
"[",
"'temp.dir'",
"]",
"(",
"prefix",
"=",
"'pkg-'",
")",
"try",
":",
"# List all of th... | Attempt to get the package ID from a .pkg file
Args:
pkg (str): The location of the pkg file
Returns:
list: List of all of the package IDs
CLI Example:
.. code-block:: bash
salt '*' macpackage.get_pkg_id /tmp/test.pkg | [
"Attempt",
"to",
"get",
"the",
"package",
"ID",
"from",
"a",
".",
"pkg",
"file"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/macpackage.py#L205-L250 | train |
saltstack/salt | salt/modules/macpackage.py | get_mpkg_ids | def get_mpkg_ids(mpkg):
'''
Attempt to get the package IDs from a mounted .mpkg file
Args:
mpkg (str): The location of the mounted mpkg file
Returns:
list: List of package IDs
CLI Example:
.. code-block:: bash
salt '*' macpackage.get_mpkg_ids /dev/disk2
'''
m... | python | def get_mpkg_ids(mpkg):
'''
Attempt to get the package IDs from a mounted .mpkg file
Args:
mpkg (str): The location of the mounted mpkg file
Returns:
list: List of package IDs
CLI Example:
.. code-block:: bash
salt '*' macpackage.get_mpkg_ids /dev/disk2
'''
m... | [
"def",
"get_mpkg_ids",
"(",
"mpkg",
")",
":",
"mpkg",
"=",
"_quote",
"(",
"mpkg",
")",
"package_infos",
"=",
"[",
"]",
"base_path",
"=",
"os",
".",
"path",
".",
"dirname",
"(",
"mpkg",
")",
"# List all of the .pkg files",
"cmd",
"=",
"'find {0} -name *.pkg'"... | Attempt to get the package IDs from a mounted .mpkg file
Args:
mpkg (str): The location of the mounted mpkg file
Returns:
list: List of package IDs
CLI Example:
.. code-block:: bash
salt '*' macpackage.get_mpkg_ids /dev/disk2 | [
"Attempt",
"to",
"get",
"the",
"package",
"IDs",
"from",
"a",
"mounted",
".",
"mpkg",
"file"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/macpackage.py#L253-L281 | train |
saltstack/salt | salt/modules/apkpkg.py | refresh_db | def refresh_db(**kwargs):
'''
Updates the package list
- ``True``: Database updated successfully
- ``False``: Problem updating database
CLI Example:
.. code-block:: bash
salt '*' pkg.refresh_db
'''
ret = {}
cmd = ['apk', 'update']
call = __salt__['cmd.run_all'](cmd,
... | python | def refresh_db(**kwargs):
'''
Updates the package list
- ``True``: Database updated successfully
- ``False``: Problem updating database
CLI Example:
.. code-block:: bash
salt '*' pkg.refresh_db
'''
ret = {}
cmd = ['apk', 'update']
call = __salt__['cmd.run_all'](cmd,
... | [
"def",
"refresh_db",
"(",
"*",
"*",
"kwargs",
")",
":",
"ret",
"=",
"{",
"}",
"cmd",
"=",
"[",
"'apk'",
",",
"'update'",
"]",
"call",
"=",
"__salt__",
"[",
"'cmd.run_all'",
"]",
"(",
"cmd",
",",
"output_loglevel",
"=",
"'trace'",
",",
"python_shell",
... | Updates the package list
- ``True``: Database updated successfully
- ``False``: Problem updating database
CLI Example:
.. code-block:: bash
salt '*' pkg.refresh_db | [
"Updates",
"the",
"package",
"list"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/apkpkg.py#L86-L117 | train |
saltstack/salt | salt/modules/apkpkg.py | list_pkgs | def list_pkgs(versions_as_list=False, **kwargs):
'''
List the packages currently installed in a dict::
{'<package_name>': '<version>'}
CLI Example:
.. code-block:: bash
salt '*' pkg.list_pkgs
salt '*' pkg.list_pkgs versions_as_list=True
'''
versions_as_list = salt.uti... | python | def list_pkgs(versions_as_list=False, **kwargs):
'''
List the packages currently installed in a dict::
{'<package_name>': '<version>'}
CLI Example:
.. code-block:: bash
salt '*' pkg.list_pkgs
salt '*' pkg.list_pkgs versions_as_list=True
'''
versions_as_list = salt.uti... | [
"def",
"list_pkgs",
"(",
"versions_as_list",
"=",
"False",
",",
"*",
"*",
"kwargs",
")",
":",
"versions_as_list",
"=",
"salt",
".",
"utils",
".",
"data",
".",
"is_true",
"(",
"versions_as_list",
")",
"# not yet implemented or not applicable",
"if",
"any",
"(",
... | List the packages currently installed in a dict::
{'<package_name>': '<version>'}
CLI Example:
.. code-block:: bash
salt '*' pkg.list_pkgs
salt '*' pkg.list_pkgs versions_as_list=True | [
"List",
"the",
"packages",
"currently",
"installed",
"in",
"a",
"dict",
"::"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/apkpkg.py#L120-L159 | train |
saltstack/salt | salt/modules/apkpkg.py | install | def install(name=None,
refresh=False,
pkgs=None,
sources=None,
**kwargs):
'''
Install the passed package, add refresh=True to update the apk database.
name
The name of the package to be installed. Note that this parameter is
ignored if either ... | python | def install(name=None,
refresh=False,
pkgs=None,
sources=None,
**kwargs):
'''
Install the passed package, add refresh=True to update the apk database.
name
The name of the package to be installed. Note that this parameter is
ignored if either ... | [
"def",
"install",
"(",
"name",
"=",
"None",
",",
"refresh",
"=",
"False",
",",
"pkgs",
"=",
"None",
",",
"sources",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"refreshdb",
"=",
"salt",
".",
"utils",
".",
"data",
".",
"is_true",
"(",
"refresh",... | Install the passed package, add refresh=True to update the apk database.
name
The name of the package to be installed. Note that this parameter is
ignored if either "pkgs" or "sources" is passed. Additionally, please
note that this option can only be used to install packages from a
... | [
"Install",
"the",
"passed",
"package",
"add",
"refresh",
"=",
"True",
"to",
"update",
"the",
"apk",
"database",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/apkpkg.py#L235-L349 | train |
saltstack/salt | salt/modules/apkpkg.py | remove | def remove(name=None, pkgs=None, purge=False, **kwargs): # pylint: disable=unused-argument
'''
Remove packages using ``apk del``.
name
The name of the package to be deleted.
Multiple Package Options:
pkgs
A list of packages to delete. Must be passed as a python list. The
... | python | def remove(name=None, pkgs=None, purge=False, **kwargs): # pylint: disable=unused-argument
'''
Remove packages using ``apk del``.
name
The name of the package to be deleted.
Multiple Package Options:
pkgs
A list of packages to delete. Must be passed as a python list. The
... | [
"def",
"remove",
"(",
"name",
"=",
"None",
",",
"pkgs",
"=",
"None",
",",
"purge",
"=",
"False",
",",
"*",
"*",
"kwargs",
")",
":",
"# pylint: disable=unused-argument",
"old",
"=",
"list_pkgs",
"(",
")",
"pkg_to_remove",
"=",
"[",
"]",
"if",
"name",
":... | Remove packages using ``apk del``.
name
The name of the package to be deleted.
Multiple Package Options:
pkgs
A list of packages to delete. Must be passed as a python list. The
``name`` parameter will be ignored if this option is passed.
Returns a dict containing the changes... | [
"Remove",
"packages",
"using",
"apk",
"del",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/apkpkg.py#L359-L425 | train |
saltstack/salt | salt/modules/apkpkg.py | upgrade | def upgrade(name=None, pkgs=None, refresh=True, **kwargs):
'''
Upgrades all packages via ``apk upgrade`` or a specific package if name or
pkgs is specified. Name is ignored if pkgs is specified
Returns a dict containing the changes.
{'<package>': {'old': '<old-version>',
... | python | def upgrade(name=None, pkgs=None, refresh=True, **kwargs):
'''
Upgrades all packages via ``apk upgrade`` or a specific package if name or
pkgs is specified. Name is ignored if pkgs is specified
Returns a dict containing the changes.
{'<package>': {'old': '<old-version>',
... | [
"def",
"upgrade",
"(",
"name",
"=",
"None",
",",
"pkgs",
"=",
"None",
",",
"refresh",
"=",
"True",
",",
"*",
"*",
"kwargs",
")",
":",
"ret",
"=",
"{",
"'changes'",
":",
"{",
"}",
",",
"'result'",
":",
"True",
",",
"'comment'",
":",
"''",
",",
"... | Upgrades all packages via ``apk upgrade`` or a specific package if name or
pkgs is specified. Name is ignored if pkgs is specified
Returns a dict containing the changes.
{'<package>': {'old': '<old-version>',
'new': '<new-version>'}}
CLI Example:
.. code-block:: bash... | [
"Upgrades",
"all",
"packages",
"via",
"apk",
"upgrade",
"or",
"a",
"specific",
"package",
"if",
"name",
"or",
"pkgs",
"is",
"specified",
".",
"Name",
"is",
"ignored",
"if",
"pkgs",
"is",
"specified"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/apkpkg.py#L428-L485 | train |
saltstack/salt | salt/modules/apkpkg.py | file_dict | def file_dict(*packages, **kwargs):
'''
List the files that belong to a package, grouped by package. Not
specifying any packages will return a list of _every_ file on the system's
package database (not generally recommended).
CLI Examples:
.. code-block:: bash
salt '*' pkg.file_list h... | python | def file_dict(*packages, **kwargs):
'''
List the files that belong to a package, grouped by package. Not
specifying any packages will return a list of _every_ file on the system's
package database (not generally recommended).
CLI Examples:
.. code-block:: bash
salt '*' pkg.file_list h... | [
"def",
"file_dict",
"(",
"*",
"packages",
",",
"*",
"*",
"kwargs",
")",
":",
"errors",
"=",
"[",
"]",
"ret",
"=",
"{",
"}",
"cmd_files",
"=",
"[",
"'apk'",
",",
"'info'",
",",
"'-L'",
"]",
"if",
"not",
"packages",
":",
"return",
"'Package name should... | List the files that belong to a package, grouped by package. Not
specifying any packages will return a list of _every_ file on the system's
package database (not generally recommended).
CLI Examples:
.. code-block:: bash
salt '*' pkg.file_list httpd
salt '*' pkg.file_list httpd postfi... | [
"List",
"the",
"files",
"that",
"belong",
"to",
"a",
"package",
"grouped",
"by",
"package",
".",
"Not",
"specifying",
"any",
"packages",
"will",
"return",
"a",
"list",
"of",
"_every_",
"file",
"on",
"the",
"system",
"s",
"package",
"database",
"(",
"not",
... | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/apkpkg.py#L544-L580 | train |
saltstack/salt | salt/modules/apkpkg.py | owner | def owner(*paths, **kwargs):
'''
Return the name of the package that owns the file. Multiple file paths can
be passed. Like :mod:`pkg.version <salt.modules.apk.version`, if a single
path is passed, a string will be returned, and if multiple paths are passed,
a dictionary of file/package name pairs w... | python | def owner(*paths, **kwargs):
'''
Return the name of the package that owns the file. Multiple file paths can
be passed. Like :mod:`pkg.version <salt.modules.apk.version`, if a single
path is passed, a string will be returned, and if multiple paths are passed,
a dictionary of file/package name pairs w... | [
"def",
"owner",
"(",
"*",
"paths",
",",
"*",
"*",
"kwargs",
")",
":",
"if",
"not",
"paths",
":",
"return",
"'You must provide a path'",
"ret",
"=",
"{",
"}",
"cmd_search",
"=",
"[",
"'apk'",
",",
"'info'",
",",
"'-W'",
"]",
"for",
"path",
"in",
"path... | Return the name of the package that owns the file. Multiple file paths can
be passed. Like :mod:`pkg.version <salt.modules.apk.version`, if a single
path is passed, a string will be returned, and if multiple paths are passed,
a dictionary of file/package name pairs will be returned.
If the file is not ... | [
"Return",
"the",
"name",
"of",
"the",
"package",
"that",
"owns",
"the",
"file",
".",
"Multiple",
"file",
"paths",
"can",
"be",
"passed",
".",
"Like",
":",
"mod",
":",
"pkg",
".",
"version",
"<salt",
".",
"modules",
".",
"apk",
".",
"version",
"if",
"... | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/apkpkg.py#L583-L617 | train |
saltstack/salt | salt/states/ini_manage.py | options_present | def options_present(name, sections=None, separator='=', strict=False):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.options_present:
- separator: '='
- strict: True
- sections:
test:
testkey: 'testval'
... | python | def options_present(name, sections=None, separator='=', strict=False):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.options_present:
- separator: '='
- strict: True
- sections:
test:
testkey: 'testval'
... | [
"def",
"options_present",
"(",
"name",
",",
"sections",
"=",
"None",
",",
"separator",
"=",
"'='",
",",
"strict",
"=",
"False",
")",
":",
"ret",
"=",
"{",
"'name'",
":",
"name",
",",
"'changes'",
":",
"{",
"}",
",",
"'result'",
":",
"True",
",",
"'... | .. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.options_present:
- separator: '='
- strict: True
- sections:
test:
testkey: 'testval'
secondoption: 'secondvalue'
test1:
t... | [
"..",
"code",
"-",
"block",
"::",
"yaml"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/ini_manage.py#L30-L143 | train |
saltstack/salt | salt/states/ini_manage.py | options_absent | def options_absent(name, sections=None, separator='='):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.options_absent:
- separator: '='
- sections:
test:
- testkey
- secondoption
test1:
... | python | def options_absent(name, sections=None, separator='='):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.options_absent:
- separator: '='
- sections:
test:
- testkey
- secondoption
test1:
... | [
"def",
"options_absent",
"(",
"name",
",",
"sections",
"=",
"None",
",",
"separator",
"=",
"'='",
")",
":",
"ret",
"=",
"{",
"'name'",
":",
"name",
",",
"'changes'",
":",
"{",
"}",
",",
"'result'",
":",
"True",
",",
"'comment'",
":",
"'No anomaly detec... | .. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.options_absent:
- separator: '='
- sections:
test:
- testkey
- secondoption
test1:
- testkey1
options present in file and not spe... | [
"..",
"code",
"-",
"block",
"::",
"yaml"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/ini_manage.py#L146-L220 | train |
saltstack/salt | salt/states/ini_manage.py | sections_present | def sections_present(name, sections=None, separator='='):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.sections_present:
- separator: '='
- sections:
- section_one
- section_two
This will only create empty sections. ... | python | def sections_present(name, sections=None, separator='='):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.sections_present:
- separator: '='
- sections:
- section_one
- section_two
This will only create empty sections. ... | [
"def",
"sections_present",
"(",
"name",
",",
"sections",
"=",
"None",
",",
"separator",
"=",
"'='",
")",
":",
"ret",
"=",
"{",
"'name'",
":",
"name",
",",
"'changes'",
":",
"{",
"}",
",",
"'result'",
":",
"True",
",",
"'comment'",
":",
"'No anomaly det... | .. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.sections_present:
- separator: '='
- sections:
- section_one
- section_two
This will only create empty sections. To also create options, use
options_present state
options pre... | [
"..",
"code",
"-",
"block",
"::",
"yaml"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/ini_manage.py#L223-L279 | train |
saltstack/salt | salt/states/ini_manage.py | sections_absent | def sections_absent(name, sections=None, separator='='):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.sections_absent:
- separator: '='
- sections:
- test
- test1
options present in file and not specified in sections... | python | def sections_absent(name, sections=None, separator='='):
'''
.. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.sections_absent:
- separator: '='
- sections:
- test
- test1
options present in file and not specified in sections... | [
"def",
"sections_absent",
"(",
"name",
",",
"sections",
"=",
"None",
",",
"separator",
"=",
"'='",
")",
":",
"ret",
"=",
"{",
"'name'",
":",
"name",
",",
"'changes'",
":",
"{",
"}",
",",
"'result'",
":",
"True",
",",
"'comment'",
":",
"'No anomaly dete... | .. code-block:: yaml
/home/saltminion/api-paste.ini:
ini.sections_absent:
- separator: '='
- sections:
- test
- test1
options present in file and not specified in sections will be deleted
changes dict will contain the sections that chan... | [
"..",
"code",
"-",
"block",
"::",
"yaml"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/ini_manage.py#L282-L330 | train |
saltstack/salt | salt/modules/pam.py | _parse | def _parse(contents=None, file_name=None):
'''
Parse a standard pam config file
'''
if contents:
pass
elif file_name and os.path.exists(file_name):
with salt.utils.files.fopen(file_name, 'r') as ifile:
contents = salt.utils.stringutils.to_unicode(ifile.read())
else:
... | python | def _parse(contents=None, file_name=None):
'''
Parse a standard pam config file
'''
if contents:
pass
elif file_name and os.path.exists(file_name):
with salt.utils.files.fopen(file_name, 'r') as ifile:
contents = salt.utils.stringutils.to_unicode(ifile.read())
else:
... | [
"def",
"_parse",
"(",
"contents",
"=",
"None",
",",
"file_name",
"=",
"None",
")",
":",
"if",
"contents",
":",
"pass",
"elif",
"file_name",
"and",
"os",
".",
"path",
".",
"exists",
"(",
"file_name",
")",
":",
"with",
"salt",
".",
"utils",
".",
"files... | Parse a standard pam config file | [
"Parse",
"a",
"standard",
"pam",
"config",
"file"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/pam.py#L27-L73 | train |
saltstack/salt | salt/modules/virt.py | __get_request_auth | def __get_request_auth(username, password):
'''
Get libvirt.openAuth callback with username, password values overriding
the configuration ones.
'''
# pylint: disable=unused-argument
def __request_auth(credentials, user_data):
'''Callback method passed to libvirt.openAuth().
The... | python | def __get_request_auth(username, password):
'''
Get libvirt.openAuth callback with username, password values overriding
the configuration ones.
'''
# pylint: disable=unused-argument
def __request_auth(credentials, user_data):
'''Callback method passed to libvirt.openAuth().
The... | [
"def",
"__get_request_auth",
"(",
"username",
",",
"password",
")",
":",
"# pylint: disable=unused-argument",
"def",
"__request_auth",
"(",
"credentials",
",",
"user_data",
")",
":",
"'''Callback method passed to libvirt.openAuth().\n\n The credentials argument is a list of ... | Get libvirt.openAuth callback with username, password values overriding
the configuration ones. | [
"Get",
"libvirt",
".",
"openAuth",
"callback",
"with",
"username",
"password",
"values",
"overriding",
"the",
"configuration",
"ones",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L137-L167 | train |
saltstack/salt | salt/modules/virt.py | __get_conn | def __get_conn(**kwargs):
'''
Detects what type of dom this node is and attempts to connect to the
correct hypervisor via libvirt.
:param connection: libvirt connection URI, overriding defaults
:param username: username to connect with, overriding defaults
:param password: password to connect w... | python | def __get_conn(**kwargs):
'''
Detects what type of dom this node is and attempts to connect to the
correct hypervisor via libvirt.
:param connection: libvirt connection URI, overriding defaults
:param username: username to connect with, overriding defaults
:param password: password to connect w... | [
"def",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
":",
"# This has only been tested on kvm and xen, it needs to be expanded to",
"# support all vm layers supported by libvirt",
"# Connection string works on bhyve, but auth is not tested.",
"username",
"=",
"kwargs",
".",
"get",
"(",... | Detects what type of dom this node is and attempts to connect to the
correct hypervisor via libvirt.
:param connection: libvirt connection URI, overriding defaults
:param username: username to connect with, overriding defaults
:param password: password to connect with, overriding defaults | [
"Detects",
"what",
"type",
"of",
"dom",
"this",
"node",
"is",
"and",
"attempts",
"to",
"connect",
"to",
"the",
"correct",
"hypervisor",
"via",
"libvirt",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L170-L243 | train |
saltstack/salt | salt/modules/virt.py | _get_domain | def _get_domain(conn, *vms, **kwargs):
'''
Return a domain object for the named VM or return domain object for all VMs.
:params conn: libvirt connection object
:param vms: list of domain names to look for
:param iterable: True to return an array in all cases
'''
ret = list()
lookup_vms ... | python | def _get_domain(conn, *vms, **kwargs):
'''
Return a domain object for the named VM or return domain object for all VMs.
:params conn: libvirt connection object
:param vms: list of domain names to look for
:param iterable: True to return an array in all cases
'''
ret = list()
lookup_vms ... | [
"def",
"_get_domain",
"(",
"conn",
",",
"*",
"vms",
",",
"*",
"*",
"kwargs",
")",
":",
"ret",
"=",
"list",
"(",
")",
"lookup_vms",
"=",
"list",
"(",
")",
"all_vms",
"=",
"[",
"]",
"if",
"kwargs",
".",
"get",
"(",
"'active'",
",",
"True",
")",
"... | Return a domain object for the named VM or return domain object for all VMs.
:params conn: libvirt connection object
:param vms: list of domain names to look for
:param iterable: True to return an array in all cases | [
"Return",
"a",
"domain",
"object",
"for",
"the",
"named",
"VM",
"or",
"return",
"domain",
"object",
"for",
"all",
"VMs",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L246-L281 | train |
saltstack/salt | salt/modules/virt.py | _parse_qemu_img_info | def _parse_qemu_img_info(info):
'''
Parse qemu-img info JSON output into disk infos dictionary
'''
raw_infos = salt.utils.json.loads(info)
disks = []
for disk_infos in raw_infos:
disk = {
'file': disk_infos['filename'],
'file format': disk_infos['for... | python | def _parse_qemu_img_info(info):
'''
Parse qemu-img info JSON output into disk infos dictionary
'''
raw_infos = salt.utils.json.loads(info)
disks = []
for disk_infos in raw_infos:
disk = {
'file': disk_infos['filename'],
'file format': disk_infos['for... | [
"def",
"_parse_qemu_img_info",
"(",
"info",
")",
":",
"raw_infos",
"=",
"salt",
".",
"utils",
".",
"json",
".",
"loads",
"(",
"info",
")",
"disks",
"=",
"[",
"]",
"for",
"disk_infos",
"in",
"raw_infos",
":",
"disk",
"=",
"{",
"'file'",
":",
"disk_infos... | Parse qemu-img info JSON output into disk infos dictionary | [
"Parse",
"qemu",
"-",
"img",
"info",
"JSON",
"output",
"into",
"disk",
"infos",
"dictionary"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L284-L322 | train |
saltstack/salt | salt/modules/virt.py | _get_on_poweroff | def _get_on_poweroff(dom):
'''
Return `on_poweroff` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_restart <domain>
'''
node = ElementTree.fromstring(get_xml(dom)).find('on_poweroff')
return node.text if node is not None else '' | python | def _get_on_poweroff(dom):
'''
Return `on_poweroff` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_restart <domain>
'''
node = ElementTree.fromstring(get_xml(dom)).find('on_poweroff')
return node.text if node is not None else '' | [
"def",
"_get_on_poweroff",
"(",
"dom",
")",
":",
"node",
"=",
"ElementTree",
".",
"fromstring",
"(",
"get_xml",
"(",
"dom",
")",
")",
".",
"find",
"(",
"'on_poweroff'",
")",
"return",
"node",
".",
"text",
"if",
"node",
"is",
"not",
"None",
"else",
"''"... | Return `on_poweroff` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_restart <domain> | [
"Return",
"on_poweroff",
"setting",
"from",
"the",
"named",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L338-L349 | train |
saltstack/salt | salt/modules/virt.py | _get_on_reboot | def _get_on_reboot(dom):
'''
Return `on_reboot` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_reboot <domain>
'''
node = ElementTree.fromstring(get_xml(dom)).find('on_reboot')
return node.text if node is not None else '' | python | def _get_on_reboot(dom):
'''
Return `on_reboot` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_reboot <domain>
'''
node = ElementTree.fromstring(get_xml(dom)).find('on_reboot')
return node.text if node is not None else '' | [
"def",
"_get_on_reboot",
"(",
"dom",
")",
":",
"node",
"=",
"ElementTree",
".",
"fromstring",
"(",
"get_xml",
"(",
"dom",
")",
")",
".",
"find",
"(",
"'on_reboot'",
")",
"return",
"node",
".",
"text",
"if",
"node",
"is",
"not",
"None",
"else",
"''"
] | Return `on_reboot` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_reboot <domain> | [
"Return",
"on_reboot",
"setting",
"from",
"the",
"named",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L352-L363 | train |
saltstack/salt | salt/modules/virt.py | _get_on_crash | def _get_on_crash(dom):
'''
Return `on_crash` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_crash <domain>
'''
node = ElementTree.fromstring(get_xml(dom)).find('on_crash')
return node.text if node is not None else '' | python | def _get_on_crash(dom):
'''
Return `on_crash` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_crash <domain>
'''
node = ElementTree.fromstring(get_xml(dom)).find('on_crash')
return node.text if node is not None else '' | [
"def",
"_get_on_crash",
"(",
"dom",
")",
":",
"node",
"=",
"ElementTree",
".",
"fromstring",
"(",
"get_xml",
"(",
"dom",
")",
")",
".",
"find",
"(",
"'on_crash'",
")",
"return",
"node",
".",
"text",
"if",
"node",
"is",
"not",
"None",
"else",
"''"
] | Return `on_crash` setting from the named vm
CLI Example:
.. code-block:: bash
salt '*' virt.get_on_crash <domain> | [
"Return",
"on_crash",
"setting",
"from",
"the",
"named",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L366-L377 | train |
saltstack/salt | salt/modules/virt.py | _get_nics | def _get_nics(dom):
'''
Get domain network interfaces from a libvirt domain object.
'''
nics = {}
doc = ElementTree.fromstring(dom.XMLDesc(0))
for iface_node in doc.findall('devices/interface'):
nic = {}
nic['type'] = iface_node.get('type')
for v_node in iface_node:
... | python | def _get_nics(dom):
'''
Get domain network interfaces from a libvirt domain object.
'''
nics = {}
doc = ElementTree.fromstring(dom.XMLDesc(0))
for iface_node in doc.findall('devices/interface'):
nic = {}
nic['type'] = iface_node.get('type')
for v_node in iface_node:
... | [
"def",
"_get_nics",
"(",
"dom",
")",
":",
"nics",
"=",
"{",
"}",
"doc",
"=",
"ElementTree",
".",
"fromstring",
"(",
"dom",
".",
"XMLDesc",
"(",
"0",
")",
")",
"for",
"iface_node",
"in",
"doc",
".",
"findall",
"(",
"'devices/interface'",
")",
":",
"ni... | Get domain network interfaces from a libvirt domain object. | [
"Get",
"domain",
"network",
"interfaces",
"from",
"a",
"libvirt",
"domain",
"object",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L380-L413 | train |
saltstack/salt | salt/modules/virt.py | _get_graphics | def _get_graphics(dom):
'''
Get domain graphics from a libvirt domain object.
'''
out = {'autoport': 'None',
'keymap': 'None',
'listen': 'None',
'port': 'None',
'type': 'None'}
doc = ElementTree.fromstring(dom.XMLDesc(0))
for g_node in doc.findall('dev... | python | def _get_graphics(dom):
'''
Get domain graphics from a libvirt domain object.
'''
out = {'autoport': 'None',
'keymap': 'None',
'listen': 'None',
'port': 'None',
'type': 'None'}
doc = ElementTree.fromstring(dom.XMLDesc(0))
for g_node in doc.findall('dev... | [
"def",
"_get_graphics",
"(",
"dom",
")",
":",
"out",
"=",
"{",
"'autoport'",
":",
"'None'",
",",
"'keymap'",
":",
"'None'",
",",
"'listen'",
":",
"'None'",
",",
"'port'",
":",
"'None'",
",",
"'type'",
":",
"'None'",
"}",
"doc",
"=",
"ElementTree",
".",... | Get domain graphics from a libvirt domain object. | [
"Get",
"domain",
"graphics",
"from",
"a",
"libvirt",
"domain",
"object",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L416-L429 | train |
saltstack/salt | salt/modules/virt.py | _get_disks | def _get_disks(dom):
'''
Get domain disks from a libvirt domain object.
'''
disks = {}
doc = ElementTree.fromstring(dom.XMLDesc(0))
for elem in doc.findall('devices/disk'):
source = elem.find('source')
if source is None:
continue
target = elem.find('target')
... | python | def _get_disks(dom):
'''
Get domain disks from a libvirt domain object.
'''
disks = {}
doc = ElementTree.fromstring(dom.XMLDesc(0))
for elem in doc.findall('devices/disk'):
source = elem.find('source')
if source is None:
continue
target = elem.find('target')
... | [
"def",
"_get_disks",
"(",
"dom",
")",
":",
"disks",
"=",
"{",
"}",
"doc",
"=",
"ElementTree",
".",
"fromstring",
"(",
"dom",
".",
"XMLDesc",
"(",
"0",
")",
")",
"for",
"elem",
"in",
"doc",
".",
"findall",
"(",
"'devices/disk'",
")",
":",
"source",
... | Get domain disks from a libvirt domain object. | [
"Get",
"domain",
"disks",
"from",
"a",
"libvirt",
"domain",
"object",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L445-L490 | train |
saltstack/salt | salt/modules/virt.py | _libvirt_creds | def _libvirt_creds():
'''
Returns the user and group that the disk images should be owned by
'''
g_cmd = 'grep ^\\s*group /etc/libvirt/qemu.conf'
u_cmd = 'grep ^\\s*user /etc/libvirt/qemu.conf'
try:
stdout = subprocess.Popen(g_cmd,
shell=True,
... | python | def _libvirt_creds():
'''
Returns the user and group that the disk images should be owned by
'''
g_cmd = 'grep ^\\s*group /etc/libvirt/qemu.conf'
u_cmd = 'grep ^\\s*user /etc/libvirt/qemu.conf'
try:
stdout = subprocess.Popen(g_cmd,
shell=True,
... | [
"def",
"_libvirt_creds",
"(",
")",
":",
"g_cmd",
"=",
"'grep ^\\\\s*group /etc/libvirt/qemu.conf'",
"u_cmd",
"=",
"'grep ^\\\\s*user /etc/libvirt/qemu.conf'",
"try",
":",
"stdout",
"=",
"subprocess",
".",
"Popen",
"(",
"g_cmd",
",",
"shell",
"=",
"True",
",",
"stdou... | Returns the user and group that the disk images should be owned by | [
"Returns",
"the",
"user",
"and",
"group",
"that",
"the",
"disk",
"images",
"should",
"be",
"owned",
"by"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L493-L513 | train |
saltstack/salt | salt/modules/virt.py | _get_migrate_command | def _get_migrate_command():
'''
Returns the command shared by the different migration types
'''
tunnel = __salt__['config.option']('virt.tunnel')
if tunnel:
salt.utils.versions.warn_until(
'Sodium',
'\'virt.tunnel\' has been deprecated in favor of '
'\'vir... | python | def _get_migrate_command():
'''
Returns the command shared by the different migration types
'''
tunnel = __salt__['config.option']('virt.tunnel')
if tunnel:
salt.utils.versions.warn_until(
'Sodium',
'\'virt.tunnel\' has been deprecated in favor of '
'\'vir... | [
"def",
"_get_migrate_command",
"(",
")",
":",
"tunnel",
"=",
"__salt__",
"[",
"'config.option'",
"]",
"(",
"'virt.tunnel'",
")",
"if",
"tunnel",
":",
"salt",
".",
"utils",
".",
"versions",
".",
"warn_until",
"(",
"'Sodium'",
",",
"'\\'virt.tunnel\\' has been dep... | Returns the command shared by the different migration types | [
"Returns",
"the",
"command",
"shared",
"by",
"the",
"different",
"migration",
"types"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L516-L532 | train |
saltstack/salt | salt/modules/virt.py | _gen_xml | def _gen_xml(name,
cpu,
mem,
diskp,
nicp,
hypervisor,
os_type,
arch,
graphics=None,
loader=None,
**kwargs):
'''
Generate the XML string to define a libvirt VM
'''
mem = int(m... | python | def _gen_xml(name,
cpu,
mem,
diskp,
nicp,
hypervisor,
os_type,
arch,
graphics=None,
loader=None,
**kwargs):
'''
Generate the XML string to define a libvirt VM
'''
mem = int(m... | [
"def",
"_gen_xml",
"(",
"name",
",",
"cpu",
",",
"mem",
",",
"diskp",
",",
"nicp",
",",
"hypervisor",
",",
"os_type",
",",
"arch",
",",
"graphics",
"=",
"None",
",",
"loader",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"mem",
"=",
"int",
"("... | Generate the XML string to define a libvirt VM | [
"Generate",
"the",
"XML",
"string",
"to",
"define",
"a",
"libvirt",
"VM"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L545-L656 | train |
saltstack/salt | salt/modules/virt.py | _gen_vol_xml | def _gen_vol_xml(vmname,
diskname,
disktype,
size,
pool):
'''
Generate the XML string to define a libvirt storage volume
'''
size = int(size) * 1024 # MB
context = {
'name': vmname,
'filename': '{0}.{1}'.format(disk... | python | def _gen_vol_xml(vmname,
diskname,
disktype,
size,
pool):
'''
Generate the XML string to define a libvirt storage volume
'''
size = int(size) * 1024 # MB
context = {
'name': vmname,
'filename': '{0}.{1}'.format(disk... | [
"def",
"_gen_vol_xml",
"(",
"vmname",
",",
"diskname",
",",
"disktype",
",",
"size",
",",
"pool",
")",
":",
"size",
"=",
"int",
"(",
"size",
")",
"*",
"1024",
"# MB",
"context",
"=",
"{",
"'name'",
":",
"vmname",
",",
"'filename'",
":",
"'{0}.{1}'",
... | Generate the XML string to define a libvirt storage volume | [
"Generate",
"the",
"XML",
"string",
"to",
"define",
"a",
"libvirt",
"storage",
"volume"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L659-L682 | train |
saltstack/salt | salt/modules/virt.py | _gen_net_xml | def _gen_net_xml(name,
bridge,
forward,
vport,
tag=None):
'''
Generate the XML string to define a libvirt network
'''
context = {
'name': name,
'bridge': bridge,
'forward': forward,
'vport': vport,
... | python | def _gen_net_xml(name,
bridge,
forward,
vport,
tag=None):
'''
Generate the XML string to define a libvirt network
'''
context = {
'name': name,
'bridge': bridge,
'forward': forward,
'vport': vport,
... | [
"def",
"_gen_net_xml",
"(",
"name",
",",
"bridge",
",",
"forward",
",",
"vport",
",",
"tag",
"=",
"None",
")",
":",
"context",
"=",
"{",
"'name'",
":",
"name",
",",
"'bridge'",
":",
"bridge",
",",
"'forward'",
":",
"forward",
",",
"'vport'",
":",
"vp... | Generate the XML string to define a libvirt network | [
"Generate",
"the",
"XML",
"string",
"to",
"define",
"a",
"libvirt",
"network"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L685-L706 | train |
saltstack/salt | salt/modules/virt.py | _gen_pool_xml | def _gen_pool_xml(name,
ptype,
target=None,
permissions=None,
source_devices=None,
source_dir=None,
source_adapter=None,
source_hosts=None,
source_auth=None,
... | python | def _gen_pool_xml(name,
ptype,
target=None,
permissions=None,
source_devices=None,
source_dir=None,
source_adapter=None,
source_hosts=None,
source_auth=None,
... | [
"def",
"_gen_pool_xml",
"(",
"name",
",",
"ptype",
",",
"target",
"=",
"None",
",",
"permissions",
"=",
"None",
",",
"source_devices",
"=",
"None",
",",
"source_dir",
"=",
"None",
",",
"source_adapter",
"=",
"None",
",",
"source_hosts",
"=",
"None",
",",
... | Generate the XML string to define a libvirt storage pool | [
"Generate",
"the",
"XML",
"string",
"to",
"define",
"a",
"libvirt",
"storage",
"pool"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L709-L744 | train |
saltstack/salt | salt/modules/virt.py | _get_images_dir | def _get_images_dir():
'''
Extract the images dir from the configuration. First attempts to
find legacy virt.images, then tries virt:images.
'''
img_dir = __salt__['config.option']('virt.images')
if img_dir:
salt.utils.versions.warn_until(
'Sodium',
'\'virt.images... | python | def _get_images_dir():
'''
Extract the images dir from the configuration. First attempts to
find legacy virt.images, then tries virt:images.
'''
img_dir = __salt__['config.option']('virt.images')
if img_dir:
salt.utils.versions.warn_until(
'Sodium',
'\'virt.images... | [
"def",
"_get_images_dir",
"(",
")",
":",
"img_dir",
"=",
"__salt__",
"[",
"'config.option'",
"]",
"(",
"'virt.images'",
")",
"if",
"img_dir",
":",
"salt",
".",
"utils",
".",
"versions",
".",
"warn_until",
"(",
"'Sodium'",
",",
"'\\'virt.images\\' has been deprec... | Extract the images dir from the configuration. First attempts to
find legacy virt.images, then tries virt:images. | [
"Extract",
"the",
"images",
"dir",
"from",
"the",
"configuration",
".",
"First",
"attempts",
"to",
"find",
"legacy",
"virt",
".",
"images",
"then",
"tries",
"virt",
":",
"images",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L747-L764 | train |
saltstack/salt | salt/modules/virt.py | _zfs_image_create | def _zfs_image_create(vm_name,
pool,
disk_name,
hostname_property_name,
sparse_volume,
disk_size,
disk_image_name):
'''
Clones an existing image, or creates a new one.
When cl... | python | def _zfs_image_create(vm_name,
pool,
disk_name,
hostname_property_name,
sparse_volume,
disk_size,
disk_image_name):
'''
Clones an existing image, or creates a new one.
When cl... | [
"def",
"_zfs_image_create",
"(",
"vm_name",
",",
"pool",
",",
"disk_name",
",",
"hostname_property_name",
",",
"sparse_volume",
",",
"disk_size",
",",
"disk_image_name",
")",
":",
"if",
"not",
"disk_image_name",
"and",
"not",
"disk_size",
":",
"raise",
"CommandExe... | Clones an existing image, or creates a new one.
When cloning an image, disk_image_name refers to the source
of the clone. If not specified, disk_size is used for creating
a new zvol, and sparse_volume determines whether to create
a thin provisioned volume.
The cloned or new volume can have a ZFS p... | [
"Clones",
"an",
"existing",
"image",
"or",
"creates",
"a",
"new",
"one",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L767-L833 | train |
saltstack/salt | salt/modules/virt.py | _qemu_image_create | def _qemu_image_create(disk, create_overlay=False, saltenv='base'):
'''
Create the image file using specified disk_size or/and disk_image
Return path to the created image file
'''
disk_size = disk.get('size', None)
disk_image = disk.get('image', None)
if not disk_size and not disk_image:
... | python | def _qemu_image_create(disk, create_overlay=False, saltenv='base'):
'''
Create the image file using specified disk_size or/and disk_image
Return path to the created image file
'''
disk_size = disk.get('size', None)
disk_image = disk.get('image', None)
if not disk_size and not disk_image:
... | [
"def",
"_qemu_image_create",
"(",
"disk",
",",
"create_overlay",
"=",
"False",
",",
"saltenv",
"=",
"'base'",
")",
":",
"disk_size",
"=",
"disk",
".",
"get",
"(",
"'size'",
",",
"None",
")",
"disk_image",
"=",
"disk",
".",
"get",
"(",
"'image'",
",",
"... | Create the image file using specified disk_size or/and disk_image
Return path to the created image file | [
"Create",
"the",
"image",
"file",
"using",
"specified",
"disk_size",
"or",
"/",
"and",
"disk_image"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L836-L925 | train |
saltstack/salt | salt/modules/virt.py | _disk_profile | def _disk_profile(profile, hypervisor, disks=None, vm_name=None, image=None, pool=None, **kwargs):
'''
Gather the disk profile from the config or apply the default based
on the active hypervisor
This is the ``default`` profile for KVM/QEMU, which can be
overridden in the configuration:
.. code... | python | def _disk_profile(profile, hypervisor, disks=None, vm_name=None, image=None, pool=None, **kwargs):
'''
Gather the disk profile from the config or apply the default based
on the active hypervisor
This is the ``default`` profile for KVM/QEMU, which can be
overridden in the configuration:
.. code... | [
"def",
"_disk_profile",
"(",
"profile",
",",
"hypervisor",
",",
"disks",
"=",
"None",
",",
"vm_name",
"=",
"None",
",",
"image",
"=",
"None",
",",
"pool",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"default",
"=",
"[",
"{",
"'system'",
":",
"{... | Gather the disk profile from the config or apply the default based
on the active hypervisor
This is the ``default`` profile for KVM/QEMU, which can be
overridden in the configuration:
.. code-block:: yaml
virt:
disk:
default:
- system:
siz... | [
"Gather",
"the",
"disk",
"profile",
"from",
"the",
"config",
"or",
"apply",
"the",
"default",
"based",
"on",
"the",
"active",
"hypervisor"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L928-L1029 | train |
saltstack/salt | salt/modules/virt.py | _fill_disk_filename | def _fill_disk_filename(vm_name, disk, hypervisor, **kwargs):
'''
Compute the disk file name and update it in the disk value.
'''
base_dir = disk.get('pool', None)
if hypervisor in ['qemu', 'kvm', 'xen']:
# Compute the base directory from the pool property. We may have either a path
... | python | def _fill_disk_filename(vm_name, disk, hypervisor, **kwargs):
'''
Compute the disk file name and update it in the disk value.
'''
base_dir = disk.get('pool', None)
if hypervisor in ['qemu', 'kvm', 'xen']:
# Compute the base directory from the pool property. We may have either a path
... | [
"def",
"_fill_disk_filename",
"(",
"vm_name",
",",
"disk",
",",
"hypervisor",
",",
"*",
"*",
"kwargs",
")",
":",
"base_dir",
"=",
"disk",
".",
"get",
"(",
"'pool'",
",",
"None",
")",
"if",
"hypervisor",
"in",
"[",
"'qemu'",
",",
"'kvm'",
",",
"'xen'",
... | Compute the disk file name and update it in the disk value. | [
"Compute",
"the",
"disk",
"file",
"name",
"and",
"update",
"it",
"in",
"the",
"disk",
"value",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1032-L1059 | train |
saltstack/salt | salt/modules/virt.py | _complete_nics | def _complete_nics(interfaces, hypervisor, dmac=None):
'''
Complete missing data for network interfaces.
'''
vmware_overlay = {'type': 'bridge', 'source': 'DEFAULT', 'model': 'e1000'}
kvm_overlay = {'type': 'bridge', 'source': 'br0', 'model': 'virtio'}
bhyve_overlay = {'type': 'bridge', 'source... | python | def _complete_nics(interfaces, hypervisor, dmac=None):
'''
Complete missing data for network interfaces.
'''
vmware_overlay = {'type': 'bridge', 'source': 'DEFAULT', 'model': 'e1000'}
kvm_overlay = {'type': 'bridge', 'source': 'br0', 'model': 'virtio'}
bhyve_overlay = {'type': 'bridge', 'source... | [
"def",
"_complete_nics",
"(",
"interfaces",
",",
"hypervisor",
",",
"dmac",
"=",
"None",
")",
":",
"vmware_overlay",
"=",
"{",
"'type'",
":",
"'bridge'",
",",
"'source'",
":",
"'DEFAULT'",
",",
"'model'",
":",
"'e1000'",
"}",
"kvm_overlay",
"=",
"{",
"'typ... | Complete missing data for network interfaces. | [
"Complete",
"missing",
"data",
"for",
"network",
"interfaces",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1062-L1136 | train |
saltstack/salt | salt/modules/virt.py | _nic_profile | def _nic_profile(profile_name, hypervisor, dmac=None):
'''
Compute NIC data based on profile
'''
default = [{'eth0': {}}]
# support old location
config_data = __salt__['config.option']('virt.nic', {}).get(
profile_name, None
)
if config_data is not None:
salt.utils.ver... | python | def _nic_profile(profile_name, hypervisor, dmac=None):
'''
Compute NIC data based on profile
'''
default = [{'eth0': {}}]
# support old location
config_data = __salt__['config.option']('virt.nic', {}).get(
profile_name, None
)
if config_data is not None:
salt.utils.ver... | [
"def",
"_nic_profile",
"(",
"profile_name",
",",
"hypervisor",
",",
"dmac",
"=",
"None",
")",
":",
"default",
"=",
"[",
"{",
"'eth0'",
":",
"{",
"}",
"}",
"]",
"# support old location",
"config_data",
"=",
"__salt__",
"[",
"'config.option'",
"]",
"(",
"'vi... | Compute NIC data based on profile | [
"Compute",
"NIC",
"data",
"based",
"on",
"profile"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1139-L1208 | train |
saltstack/salt | salt/modules/virt.py | _get_merged_nics | def _get_merged_nics(hypervisor, profile, interfaces=None, dmac=None):
'''
Get network devices from the profile and merge uer defined ones with them.
'''
nicp = _nic_profile(profile, hypervisor, dmac=dmac) if profile else []
log.debug('NIC profile is %s', nicp)
if interfaces:
users_nics ... | python | def _get_merged_nics(hypervisor, profile, interfaces=None, dmac=None):
'''
Get network devices from the profile and merge uer defined ones with them.
'''
nicp = _nic_profile(profile, hypervisor, dmac=dmac) if profile else []
log.debug('NIC profile is %s', nicp)
if interfaces:
users_nics ... | [
"def",
"_get_merged_nics",
"(",
"hypervisor",
",",
"profile",
",",
"interfaces",
"=",
"None",
",",
"dmac",
"=",
"None",
")",
":",
"nicp",
"=",
"_nic_profile",
"(",
"profile",
",",
"hypervisor",
",",
"dmac",
"=",
"dmac",
")",
"if",
"profile",
"else",
"[",... | Get network devices from the profile and merge uer defined ones with them. | [
"Get",
"network",
"devices",
"from",
"the",
"profile",
"and",
"merge",
"uer",
"defined",
"ones",
"with",
"them",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1211-L1226 | train |
saltstack/salt | salt/modules/virt.py | init | def init(name,
cpu,
mem,
image=None,
nic='default',
interfaces=None,
hypervisor=None,
start=True, # pylint: disable=redefined-outer-name
disk='default',
disks=None,
saltenv='base',
seed=True,
install=True,
... | python | def init(name,
cpu,
mem,
image=None,
nic='default',
interfaces=None,
hypervisor=None,
start=True, # pylint: disable=redefined-outer-name
disk='default',
disks=None,
saltenv='base',
seed=True,
install=True,
... | [
"def",
"init",
"(",
"name",
",",
"cpu",
",",
"mem",
",",
"image",
"=",
"None",
",",
"nic",
"=",
"'default'",
",",
"interfaces",
"=",
"None",
",",
"hypervisor",
"=",
"None",
",",
"start",
"=",
"True",
",",
"# pylint: disable=redefined-outer-name",
"disk",
... | Initialize a new vm
:param name: name of the virtual machine to create
:param cpu: Number of virtual CPUs to assign to the virtual machine
:param mem: Amount of memory to allocate to the virtual machine in MiB.
:param image: Path to a disk image to use as the first disk (Default: ``None``).
Dep... | [
"Initialize",
"a",
"new",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1229-L1723 | train |
saltstack/salt | salt/modules/virt.py | _disks_equal | def _disks_equal(disk1, disk2):
'''
Test if two disk elements should be considered like the same device
'''
target1 = disk1.find('target')
target2 = disk2.find('target')
source1 = ElementTree.tostring(disk1.find('source')) if disk1.find('source') is not None else None
source2 = ElementTree.t... | python | def _disks_equal(disk1, disk2):
'''
Test if two disk elements should be considered like the same device
'''
target1 = disk1.find('target')
target2 = disk2.find('target')
source1 = ElementTree.tostring(disk1.find('source')) if disk1.find('source') is not None else None
source2 = ElementTree.t... | [
"def",
"_disks_equal",
"(",
"disk1",
",",
"disk2",
")",
":",
"target1",
"=",
"disk1",
".",
"find",
"(",
"'target'",
")",
"target2",
"=",
"disk2",
".",
"find",
"(",
"'target'",
")",
"source1",
"=",
"ElementTree",
".",
"tostring",
"(",
"disk1",
".",
"fin... | Test if two disk elements should be considered like the same device | [
"Test",
"if",
"two",
"disk",
"elements",
"should",
"be",
"considered",
"like",
"the",
"same",
"device"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1726-L1739 | train |
saltstack/salt | salt/modules/virt.py | _nics_equal | def _nics_equal(nic1, nic2):
'''
Test if two interface elements should be considered like the same device
'''
def _filter_nic(nic):
'''
Filter out elements to ignore when comparing nics
'''
return {
'type': nic.attrib['type'],
'source': nic.find('... | python | def _nics_equal(nic1, nic2):
'''
Test if two interface elements should be considered like the same device
'''
def _filter_nic(nic):
'''
Filter out elements to ignore when comparing nics
'''
return {
'type': nic.attrib['type'],
'source': nic.find('... | [
"def",
"_nics_equal",
"(",
"nic1",
",",
"nic2",
")",
":",
"def",
"_filter_nic",
"(",
"nic",
")",
":",
"'''\n Filter out elements to ignore when comparing nics\n '''",
"return",
"{",
"'type'",
":",
"nic",
".",
"attrib",
"[",
"'type'",
"]",
",",
"'sour... | Test if two interface elements should be considered like the same device | [
"Test",
"if",
"two",
"interface",
"elements",
"should",
"be",
"considered",
"like",
"the",
"same",
"device"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1742-L1757 | train |
saltstack/salt | salt/modules/virt.py | _graphics_equal | def _graphics_equal(gfx1, gfx2):
'''
Test if two graphics devices should be considered the same device
'''
def _filter_graphics(gfx):
'''
When the domain is running, the graphics element may contain additional properties
with the default values. This function will strip down the ... | python | def _graphics_equal(gfx1, gfx2):
'''
Test if two graphics devices should be considered the same device
'''
def _filter_graphics(gfx):
'''
When the domain is running, the graphics element may contain additional properties
with the default values. This function will strip down the ... | [
"def",
"_graphics_equal",
"(",
"gfx1",
",",
"gfx2",
")",
":",
"def",
"_filter_graphics",
"(",
"gfx",
")",
":",
"'''\n When the domain is running, the graphics element may contain additional properties\n with the default values. This function will strip down the default valu... | Test if two graphics devices should be considered the same device | [
"Test",
"if",
"two",
"graphics",
"devices",
"should",
"be",
"considered",
"the",
"same",
"device"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1760-L1782 | train |
saltstack/salt | salt/modules/virt.py | _diff_lists | def _diff_lists(old, new, comparator):
'''
Compare lists to extract the changes
:param old: old list
:param new: new list
:return: a dictionary with ``unchanged``, ``new``, ``deleted`` and ``sorted`` keys
The sorted list is the union of unchanged and new lists, but keeping the original
ord... | python | def _diff_lists(old, new, comparator):
'''
Compare lists to extract the changes
:param old: old list
:param new: new list
:return: a dictionary with ``unchanged``, ``new``, ``deleted`` and ``sorted`` keys
The sorted list is the union of unchanged and new lists, but keeping the original
ord... | [
"def",
"_diff_lists",
"(",
"old",
",",
"new",
",",
"comparator",
")",
":",
"def",
"_remove_indent",
"(",
"node",
")",
":",
"'''\n Remove the XML indentation to compare XML trees more easily\n '''",
"node_copy",
"=",
"copy",
".",
"deepcopy",
"(",
"node",
... | Compare lists to extract the changes
:param old: old list
:param new: new list
:return: a dictionary with ``unchanged``, ``new``, ``deleted`` and ``sorted`` keys
The sorted list is the union of unchanged and new lists, but keeping the original
order from the new list. | [
"Compare",
"lists",
"to",
"extract",
"the",
"changes"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1785-L1819 | train |
saltstack/salt | salt/modules/virt.py | _diff_disk_lists | def _diff_disk_lists(old, new):
'''
Compare disk definitions to extract the changes and fix target devices
:param old: list of ElementTree nodes representing the old disks
:param new: list of ElementTree nodes representing the new disks
'''
# Change the target device to avoid duplicates before ... | python | def _diff_disk_lists(old, new):
'''
Compare disk definitions to extract the changes and fix target devices
:param old: list of ElementTree nodes representing the old disks
:param new: list of ElementTree nodes representing the new disks
'''
# Change the target device to avoid duplicates before ... | [
"def",
"_diff_disk_lists",
"(",
"old",
",",
"new",
")",
":",
"# Change the target device to avoid duplicates before diffing: this may lead",
"# to additional changes. Think of unchanged disk 'hda' and another disk listed",
"# before it becoming 'hda' too... the unchanged need to turn into 'hdb'.... | Compare disk definitions to extract the changes and fix target devices
:param old: list of ElementTree nodes representing the old disks
:param new: list of ElementTree nodes representing the new disks | [
"Compare",
"disk",
"definitions",
"to",
"extract",
"the",
"changes",
"and",
"fix",
"target",
"devices"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1822-L1843 | train |
saltstack/salt | salt/modules/virt.py | _diff_interface_lists | def _diff_interface_lists(old, new):
'''
Compare network interface definitions to extract the changes
:param old: list of ElementTree nodes representing the old interfaces
:param new: list of ElementTree nodes representing the new interfaces
'''
diff = _diff_lists(old, new, _nics_equal)
# ... | python | def _diff_interface_lists(old, new):
'''
Compare network interface definitions to extract the changes
:param old: list of ElementTree nodes representing the old interfaces
:param new: list of ElementTree nodes representing the new interfaces
'''
diff = _diff_lists(old, new, _nics_equal)
# ... | [
"def",
"_diff_interface_lists",
"(",
"old",
",",
"new",
")",
":",
"diff",
"=",
"_diff_lists",
"(",
"old",
",",
"new",
",",
"_nics_equal",
")",
"# Remove duplicated addresses mac addresses and let libvirt generate them for us",
"macs",
"=",
"[",
"nic",
".",
"find",
"... | Compare network interface definitions to extract the changes
:param old: list of ElementTree nodes representing the old interfaces
:param new: list of ElementTree nodes representing the new interfaces | [
"Compare",
"network",
"interface",
"definitions",
"to",
"extract",
"the",
"changes"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1846-L1862 | train |
saltstack/salt | salt/modules/virt.py | update | def update(name,
cpu=0,
mem=0,
disk_profile=None,
disks=None,
nic_profile=None,
interfaces=None,
graphics=None,
live=True,
**kwargs):
'''
Update the definition of an existing domain.
:param name: Name of the ... | python | def update(name,
cpu=0,
mem=0,
disk_profile=None,
disks=None,
nic_profile=None,
interfaces=None,
graphics=None,
live=True,
**kwargs):
'''
Update the definition of an existing domain.
:param name: Name of the ... | [
"def",
"update",
"(",
"name",
",",
"cpu",
"=",
"0",
",",
"mem",
"=",
"0",
",",
"disk_profile",
"=",
"None",
",",
"disks",
"=",
"None",
",",
"nic_profile",
"=",
"None",
",",
"interfaces",
"=",
"None",
",",
"graphics",
"=",
"None",
",",
"live",
"=",
... | Update the definition of an existing domain.
:param name: Name of the domain to update
:param cpu: Number of virtual CPUs to assign to the virtual machine
:param mem: Amount of memory to allocate to the virtual machine in MiB.
:param disk_profile: disk profile to use
:param disks:
Disk defi... | [
"Update",
"the",
"definition",
"of",
"an",
"existing",
"domain",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L1875-L2061 | train |
saltstack/salt | salt/modules/virt.py | list_domains | def list_domains(**kwargs):
'''
Return a list of available domains.
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to conn... | python | def list_domains(**kwargs):
'''
Return a list of available domains.
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to conn... | [
"def",
"list_domains",
"(",
"*",
"*",
"kwargs",
")",
":",
"vms",
"=",
"[",
"]",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"for",
"dom",
"in",
"_get_domain",
"(",
"conn",
",",
"iterable",
"=",
"True",
")",
":",
"vms",
".",
"append",
... | Return a list of available domains.
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to connect with, overriding defaults
.... | [
"Return",
"a",
"list",
"of",
"available",
"domains",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2064-L2089 | train |
saltstack/salt | salt/modules/virt.py | list_active_vms | def list_active_vms(**kwargs):
'''
Return a list of names for active virtual machine on the minion
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:p... | python | def list_active_vms(**kwargs):
'''
Return a list of names for active virtual machine on the minion
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:p... | [
"def",
"list_active_vms",
"(",
"*",
"*",
"kwargs",
")",
":",
"vms",
"=",
"[",
"]",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"for",
"dom",
"in",
"_get_domain",
"(",
"conn",
",",
"iterable",
"=",
"True",
",",
"inactive",
"=",
"False",
... | Return a list of names for active virtual machine on the minion
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to connect with, ov... | [
"Return",
"a",
"list",
"of",
"names",
"for",
"active",
"virtual",
"machine",
"on",
"the",
"minion"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2092-L2117 | train |
saltstack/salt | salt/modules/virt.py | list_inactive_vms | def list_inactive_vms(**kwargs):
'''
Return a list of names for inactive virtual machine on the minion
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
... | python | def list_inactive_vms(**kwargs):
'''
Return a list of names for inactive virtual machine on the minion
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
... | [
"def",
"list_inactive_vms",
"(",
"*",
"*",
"kwargs",
")",
":",
"vms",
"=",
"[",
"]",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"for",
"dom",
"in",
"_get_domain",
"(",
"conn",
",",
"iterable",
"=",
"True",
",",
"active",
"=",
"False",
... | Return a list of names for inactive virtual machine on the minion
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to connect with, ... | [
"Return",
"a",
"list",
"of",
"names",
"for",
"inactive",
"virtual",
"machine",
"on",
"the",
"minion"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2120-L2145 | train |
saltstack/salt | salt/modules/virt.py | vm_info | def vm_info(vm_=None, **kwargs):
'''
Return detailed information about the vms on this hyper in a
list of dicts:
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overridin... | python | def vm_info(vm_=None, **kwargs):
'''
Return detailed information about the vms on this hyper in a
list of dicts:
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overridin... | [
"def",
"vm_info",
"(",
"vm_",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"def",
"_info",
"(",
"dom",
")",
":",
"'''\n Compute the infos of a domain\n '''",
"raw",
"=",
"dom",
".",
"info",
"(",
")",
"return",
"{",
"'cpu'",
":",
"raw",
"... | Return detailed information about the vms on this hyper in a
list of dicts:
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.... | [
"Return",
"detailed",
"information",
"about",
"the",
"vms",
"on",
"this",
"hyper",
"in",
"a",
"list",
"of",
"dicts",
":"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2148-L2212 | train |
saltstack/salt | salt/modules/virt.py | vm_state | def vm_state(vm_=None, **kwargs):
'''
Return list of all the vms and their state.
If you pass a VM name in as an argument then it will return info
for just the named VM, otherwise it will return all VMs.
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defau... | python | def vm_state(vm_=None, **kwargs):
'''
Return list of all the vms and their state.
If you pass a VM name in as an argument then it will return info
for just the named VM, otherwise it will return all VMs.
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defau... | [
"def",
"vm_state",
"(",
"vm_",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"def",
"_info",
"(",
"dom",
")",
":",
"'''\n Compute domain state\n '''",
"state",
"=",
"''",
"raw",
"=",
"dom",
".",
"info",
"(",
")",
"state",
"=",
"VIRT_STATE... | Return list of all the vms and their state.
If you pass a VM name in as an argument then it will return info
for just the named VM, otherwise it will return all VMs.
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:p... | [
"Return",
"list",
"of",
"all",
"the",
"vms",
"and",
"their",
"state",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2215-L2255 | train |
saltstack/salt | salt/modules/virt.py | _node_info | def _node_info(conn):
'''
Internal variant of node_info taking a libvirt connection as parameter
'''
raw = conn.getInfo()
info = {'cpucores': raw[6],
'cpumhz': raw[3],
'cpumodel': six.text_type(raw[0]),
'cpus': raw[2],
'cputhreads': raw[7],
... | python | def _node_info(conn):
'''
Internal variant of node_info taking a libvirt connection as parameter
'''
raw = conn.getInfo()
info = {'cpucores': raw[6],
'cpumhz': raw[3],
'cpumodel': six.text_type(raw[0]),
'cpus': raw[2],
'cputhreads': raw[7],
... | [
"def",
"_node_info",
"(",
"conn",
")",
":",
"raw",
"=",
"conn",
".",
"getInfo",
"(",
")",
"info",
"=",
"{",
"'cpucores'",
":",
"raw",
"[",
"6",
"]",
",",
"'cpumhz'",
":",
"raw",
"[",
"3",
"]",
",",
"'cpumodel'",
":",
"six",
".",
"text_type",
"(",... | Internal variant of node_info taking a libvirt connection as parameter | [
"Internal",
"variant",
"of",
"node_info",
"taking",
"a",
"libvirt",
"connection",
"as",
"parameter"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2258-L2271 | train |
saltstack/salt | salt/modules/virt.py | node_info | def node_info(**kwargs):
'''
Return a dict with information about this node
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password... | python | def node_info(**kwargs):
'''
Return a dict with information about this node
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password... | [
"def",
"node_info",
"(",
"*",
"*",
"kwargs",
")",
":",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"info",
"=",
"_node_info",
"(",
"conn",
")",
"conn",
".",
"close",
"(",
")",
"return",
"info"
] | Return a dict with information about this node
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to connect with, overriding defaults... | [
"Return",
"a",
"dict",
"with",
"information",
"about",
"this",
"node"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2274-L2297 | train |
saltstack/salt | salt/modules/virt.py | get_nics | def get_nics(vm_, **kwargs):
'''
Return info about the network interfaces of a named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versio... | python | def get_nics(vm_, **kwargs):
'''
Return info about the network interfaces of a named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versio... | [
"def",
"get_nics",
"(",
"vm_",
",",
"*",
"*",
"kwargs",
")",
":",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"nics",
"=",
"_get_nics",
"(",
"_get_domain",
"(",
"conn",
",",
"vm_",
")",
")",
"conn",
".",
"close",
"(",
")",
"return",
... | Return info about the network interfaces of a named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: pa... | [
"Return",
"info",
"about",
"the",
"network",
"interfaces",
"of",
"a",
"named",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2300-L2324 | train |
saltstack/salt | salt/modules/virt.py | get_macs | def get_macs(vm_, **kwargs):
'''
Return a list off MAC addresses from the named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadde... | python | def get_macs(vm_, **kwargs):
'''
Return a list off MAC addresses from the named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadde... | [
"def",
"get_macs",
"(",
"vm_",
",",
"*",
"*",
"kwargs",
")",
":",
"doc",
"=",
"ElementTree",
".",
"fromstring",
"(",
"get_xml",
"(",
"vm_",
",",
"*",
"*",
"kwargs",
")",
")",
"return",
"[",
"node",
".",
"get",
"(",
"'address'",
")",
"for",
"node",
... | Return a list off MAC addresses from the named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: passwor... | [
"Return",
"a",
"list",
"off",
"MAC",
"addresses",
"from",
"the",
"named",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2327-L2349 | train |
saltstack/salt | salt/modules/virt.py | get_graphics | def get_graphics(vm_, **kwargs):
'''
Returns the information on vnc for a given vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadde... | python | def get_graphics(vm_, **kwargs):
'''
Returns the information on vnc for a given vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadde... | [
"def",
"get_graphics",
"(",
"vm_",
",",
"*",
"*",
"kwargs",
")",
":",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"graphics",
"=",
"_get_graphics",
"(",
"_get_domain",
"(",
"conn",
",",
"vm_",
")",
")",
"conn",
".",
"close",
"(",
")",
... | Returns the information on vnc for a given vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to... | [
"Returns",
"the",
"information",
"on",
"vnc",
"for",
"a",
"given",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2352-L2376 | train |
saltstack/salt | salt/modules/virt.py | get_loader | def get_loader(vm_, **kwargs):
'''
Returns the information on the loader for a given vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
:param username: username to connect with, overriding defaults
:param password: password to connect with, overrid... | python | def get_loader(vm_, **kwargs):
'''
Returns the information on the loader for a given vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
:param username: username to connect with, overriding defaults
:param password: password to connect with, overrid... | [
"def",
"get_loader",
"(",
"vm_",
",",
"*",
"*",
"kwargs",
")",
":",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"loader",
"=",
"_get_loader",
"(",
"_get_domain",
"(",
"conn",
",",
"vm_",
")",
")",
"conn",
".",
"close",
"(",
")",
"retur... | Returns the information on the loader for a given vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
:param username: username to connect with, overriding defaults
:param password: password to connect with, overriding defaults
CLI Example:
.. code... | [
"Returns",
"the",
"information",
"on",
"the",
"loader",
"for",
"a",
"given",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2379-L2399 | train |
saltstack/salt | salt/modules/virt.py | get_disks | def get_disks(vm_, **kwargs):
'''
Return the disks of a named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:... | python | def get_disks(vm_, **kwargs):
'''
Return the disks of a named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:... | [
"def",
"get_disks",
"(",
"vm_",
",",
"*",
"*",
"kwargs",
")",
":",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"disks",
"=",
"_get_disks",
"(",
"_get_domain",
"(",
"conn",
",",
"vm_",
")",
")",
"conn",
".",
"close",
"(",
")",
"return",... | Return the disks of a named vm
:param vm_: name of the domain
:param connection: libvirt connection URI, overriding defaults
.. versionadded:: 2019.2.0
:param username: username to connect with, overriding defaults
.. versionadded:: 2019.2.0
:param password: password to connect with, ... | [
"Return",
"the",
"disks",
"of",
"a",
"named",
"vm"
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2402-L2426 | train |
saltstack/salt | salt/modules/virt.py | setmem | def setmem(vm_, memory, config=False, **kwargs):
'''
Changes the amount of memory allocated to VM. The VM must be shutdown
for this to work.
:param vm_: name of the domain
:param memory: memory amount to set in MB
:param config: if True then libvirt will be asked to modify the config as well
... | python | def setmem(vm_, memory, config=False, **kwargs):
'''
Changes the amount of memory allocated to VM. The VM must be shutdown
for this to work.
:param vm_: name of the domain
:param memory: memory amount to set in MB
:param config: if True then libvirt will be asked to modify the config as well
... | [
"def",
"setmem",
"(",
"vm_",
",",
"memory",
",",
"config",
"=",
"False",
",",
"*",
"*",
"kwargs",
")",
":",
"conn",
"=",
"__get_conn",
"(",
"*",
"*",
"kwargs",
")",
"dom",
"=",
"_get_domain",
"(",
"conn",
",",
"vm_",
")",
"if",
"VIRT_STATE_NAME_MAP",... | Changes the amount of memory allocated to VM. The VM must be shutdown
for this to work.
:param vm_: name of the domain
:param memory: memory amount to set in MB
:param config: if True then libvirt will be asked to modify the config as well
:param connection: libvirt connection URI, overriding defau... | [
"Changes",
"the",
"amount",
"of",
"memory",
"allocated",
"to",
"VM",
".",
"The",
"VM",
"must",
"be",
"shutdown",
"for",
"this",
"to",
"work",
"."
] | e8541fd6e744ab0df786c0f76102e41631f45d46 | https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/virt.py#L2429-L2473 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.