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/states/azurearm_network.py
security_rule_absent
def security_rule_absent(name, security_group, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a security rule does not exist in the network security group. :param name: Name of the security rule. :param security_group: The network security group conta...
python
def security_rule_absent(name, security_group, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a security rule does not exist in the network security group. :param name: Name of the security rule. :param security_group: The network security group conta...
[ "def", "security_rule_absent", "(", "name", ",", "security_group", ",", "resource_group", ",", "connection_auth", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "False", ",", "'comment'", ":", "''", ",", "'changes'", "...
.. versionadded:: 2019.2.0 Ensure a security rule does not exist in the network security group. :param name: Name of the security rule. :param security_group: The network security group containing the security rule. :param resource_group: The resource group assigned to the ne...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L1055-L1119
train
saltstack/salt
salt/states/azurearm_network.py
load_balancer_present
def load_balancer_present(name, resource_group, sku=None, frontend_ip_configurations=None, backend_address_pools=None, load_balancing_rules=None, probes=None, inbound_nat_rules=None, inbound_nat_pools=None, outbound_nat_rules=None, tags=None, connection_auth=None, **k...
python
def load_balancer_present(name, resource_group, sku=None, frontend_ip_configurations=None, backend_address_pools=None, load_balancing_rules=None, probes=None, inbound_nat_rules=None, inbound_nat_pools=None, outbound_nat_rules=None, tags=None, connection_auth=None, **k...
[ "def", "load_balancer_present", "(", "name", ",", "resource_group", ",", "sku", "=", "None", ",", "frontend_ip_configurations", "=", "None", ",", "backend_address_pools", "=", "None", ",", "load_balancing_rules", "=", "None", ",", "probes", "=", "None", ",", "in...
.. versionadded:: 2019.2.0 Ensure a load balancer exists. :param name: Name of the load balancer. :param resource_group: The resource group assigned to the load balancer. :param sku: The load balancer SKU, which can be 'Basic' or 'Standard'. :param tags: A dictio...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L1122-L1478
train
saltstack/salt
salt/states/azurearm_network.py
load_balancer_absent
def load_balancer_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a load balancer does not exist in the resource group. :param name: Name of the load balancer. :param resource_group: The resource group assigned to the load balancer. :...
python
def load_balancer_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a load balancer does not exist in the resource group. :param name: Name of the load balancer. :param resource_group: The resource group assigned to the load balancer. :...
[ "def", "load_balancer_absent", "(", "name", ",", "resource_group", ",", "connection_auth", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "False", ",", "'comment'", ":", "''", ",", "'changes'", ":", "{", "}", "}", ...
.. versionadded:: 2019.2.0 Ensure a load balancer does not exist in the resource group. :param name: Name of the load balancer. :param resource_group: The resource group assigned to the load balancer. :param connection_auth: A dict with subscription and authentication paramet...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L1481-L1541
train
saltstack/salt
salt/states/azurearm_network.py
public_ip_address_present
def public_ip_address_present(name, resource_group, tags=None, sku=None, public_ip_allocation_method=None, public_ip_address_version=None, dns_settings=None, idle_timeout_in_minutes=None, connection_auth=None, **kwargs): ''' .. versionadded:: 2019.2.0 ...
python
def public_ip_address_present(name, resource_group, tags=None, sku=None, public_ip_allocation_method=None, public_ip_address_version=None, dns_settings=None, idle_timeout_in_minutes=None, connection_auth=None, **kwargs): ''' .. versionadded:: 2019.2.0 ...
[ "def", "public_ip_address_present", "(", "name", ",", "resource_group", ",", "tags", "=", "None", ",", "sku", "=", "None", ",", "public_ip_allocation_method", "=", "None", ",", "public_ip_address_version", "=", "None", ",", "dns_settings", "=", "None", ",", "idl...
.. versionadded:: 2019.2.0 Ensure a public IP address exists. :param name: Name of the public IP address. :param resource_group: The resource group assigned to the public IP address. :param dns_settings: An optional dictionary representing a valid PublicIPAddressDnsSettings o...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L1544-L1727
train
saltstack/salt
salt/states/azurearm_network.py
public_ip_address_absent
def public_ip_address_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a public IP address does not exist in the resource group. :param name: Name of the public IP address. :param resource_group: The resource group assigned to the public IP...
python
def public_ip_address_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a public IP address does not exist in the resource group. :param name: Name of the public IP address. :param resource_group: The resource group assigned to the public IP...
[ "def", "public_ip_address_absent", "(", "name", ",", "resource_group", ",", "connection_auth", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "False", ",", "'comment'", ":", "''", ",", "'changes'", ":", "{", "}", "}"...
.. versionadded:: 2019.2.0 Ensure a public IP address does not exist in the resource group. :param name: Name of the public IP address. :param resource_group: The resource group assigned to the public IP address. :param connection_auth: A dict with subscription and authentica...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L1730-L1790
train
saltstack/salt
salt/states/azurearm_network.py
network_interface_present
def network_interface_present(name, ip_configurations, subnet, virtual_network, resource_group, tags=None, virtual_machine=None, network_security_group=None, dns_settings=None, mac_address=None, primary=None, enable_accelerated_networking=None, enable_ip_forwa...
python
def network_interface_present(name, ip_configurations, subnet, virtual_network, resource_group, tags=None, virtual_machine=None, network_security_group=None, dns_settings=None, mac_address=None, primary=None, enable_accelerated_networking=None, enable_ip_forwa...
[ "def", "network_interface_present", "(", "name", ",", "ip_configurations", ",", "subnet", ",", "virtual_network", ",", "resource_group", ",", "tags", "=", "None", ",", "virtual_machine", "=", "None", ",", "network_security_group", "=", "None", ",", "dns_settings", ...
.. versionadded:: 2019.2.0 Ensure a network interface exists. :param name: Name of the network interface. :param ip_configurations: A list of dictionaries representing valid NetworkInterfaceIPConfiguration objects. The 'name' key is required at minimum. At least one IP Configurati...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L1793-L2047
train
saltstack/salt
salt/states/azurearm_network.py
network_interface_absent
def network_interface_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a network interface does not exist in the resource group. :param name: Name of the network interface. :param resource_group: The resource group assigned to the network i...
python
def network_interface_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a network interface does not exist in the resource group. :param name: Name of the network interface. :param resource_group: The resource group assigned to the network i...
[ "def", "network_interface_absent", "(", "name", ",", "resource_group", ",", "connection_auth", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "False", ",", "'comment'", ":", "''", ",", "'changes'", ":", "{", "}", "}"...
.. versionadded:: 2019.2.0 Ensure a network interface does not exist in the resource group. :param name: Name of the network interface. :param resource_group: The resource group assigned to the network interface. :param connection_auth: A dict with subscription and authentica...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L2050-L2110
train
saltstack/salt
salt/states/azurearm_network.py
route_table_present
def route_table_present(name, resource_group, tags=None, routes=None, disable_bgp_route_propagation=None, connection_auth=None, **kwargs): ''' .. versionadded:: 2019.2.0 Ensure a route table exists. :param name: Name of the route table. :param resource_group: ...
python
def route_table_present(name, resource_group, tags=None, routes=None, disable_bgp_route_propagation=None, connection_auth=None, **kwargs): ''' .. versionadded:: 2019.2.0 Ensure a route table exists. :param name: Name of the route table. :param resource_group: ...
[ "def", "route_table_present", "(", "name", ",", "resource_group", ",", "tags", "=", "None", ",", "routes", "=", "None", ",", "disable_bgp_route_propagation", "=", "None", ",", "connection_auth", "=", "None", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "...
.. versionadded:: 2019.2.0 Ensure a route table exists. :param name: Name of the route table. :param resource_group: The resource group assigned to the route table. :param routes: An optional list of dictionaries representing valid Route objects contained within a route table...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L2113-L2251
train
saltstack/salt
salt/states/azurearm_network.py
route_table_absent
def route_table_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a route table does not exist in the resource group. :param name: Name of the route table. :param resource_group: The resource group assigned to the route table. :param co...
python
def route_table_absent(name, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a route table does not exist in the resource group. :param name: Name of the route table. :param resource_group: The resource group assigned to the route table. :param co...
[ "def", "route_table_absent", "(", "name", ",", "resource_group", ",", "connection_auth", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "False", ",", "'comment'", ":", "''", ",", "'changes'", ":", "{", "}", "}", "i...
.. versionadded:: 2019.2.0 Ensure a route table does not exist in the resource group. :param name: Name of the route table. :param resource_group: The resource group assigned to the route table. :param connection_auth: A dict with subscription and authentication parameters to...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L2254-L2314
train
saltstack/salt
salt/states/azurearm_network.py
route_present
def route_present(name, address_prefix, next_hop_type, route_table, resource_group, next_hop_ip_address=None, connection_auth=None, **kwargs): ''' .. versionadded:: 2019.2.0 Ensure a route exists within a route table. :param name: Name of the route. :param address_prefix...
python
def route_present(name, address_prefix, next_hop_type, route_table, resource_group, next_hop_ip_address=None, connection_auth=None, **kwargs): ''' .. versionadded:: 2019.2.0 Ensure a route exists within a route table. :param name: Name of the route. :param address_prefix...
[ "def", "route_present", "(", "name", ",", "address_prefix", ",", "next_hop_type", ",", "route_table", ",", "resource_group", ",", "next_hop_ip_address", "=", "None", ",", "connection_auth", "=", "None", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'n...
.. versionadded:: 2019.2.0 Ensure a route exists within a route table. :param name: Name of the route. :param address_prefix: The destination CIDR to which the route applies. :param next_hop_type: The type of Azure hop the packet should be sent to. Possible values are: 'Virtu...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L2317-L2447
train
saltstack/salt
salt/states/azurearm_network.py
route_absent
def route_absent(name, route_table, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a route table does not exist in the resource group. :param name: Name of the route table. :param route_table: The name of the existing route table containing the route....
python
def route_absent(name, route_table, resource_group, connection_auth=None): ''' .. versionadded:: 2019.2.0 Ensure a route table does not exist in the resource group. :param name: Name of the route table. :param route_table: The name of the existing route table containing the route....
[ "def", "route_absent", "(", "name", ",", "route_table", ",", "resource_group", ",", "connection_auth", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "False", ",", "'comment'", ":", "''", ",", "'changes'", ":", "{", ...
.. versionadded:: 2019.2.0 Ensure a route table does not exist in the resource group. :param name: Name of the route table. :param route_table: The name of the existing route table containing the route. :param resource_group: The resource group assigned to the route table. ...
[ "..", "versionadded", "::", "2019", ".", "2", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/azurearm_network.py#L2450-L2514
train
saltstack/salt
salt/utils/jid.py
gen_jid
def gen_jid(opts=None): ''' Generate a jid ''' if opts is None: salt.utils.versions.warn_until( 'Sodium', 'The `opts` argument was not passed into salt.utils.jid.gen_jid(). ' 'This will be required starting in {version}.' ) opts = {} global...
python
def gen_jid(opts=None): ''' Generate a jid ''' if opts is None: salt.utils.versions.warn_until( 'Sodium', 'The `opts` argument was not passed into salt.utils.jid.gen_jid(). ' 'This will be required starting in {version}.' ) opts = {} global...
[ "def", "gen_jid", "(", "opts", "=", "None", ")", ":", "if", "opts", "is", "None", ":", "salt", ".", "utils", ".", "versions", ".", "warn_until", "(", "'Sodium'", ",", "'The `opts` argument was not passed into salt.utils.jid.gen_jid(). '", "'This will be required start...
Generate a jid
[ "Generate", "a", "jid" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/jid.py#L17-L39
train
saltstack/salt
salt/utils/jid.py
is_jid
def is_jid(jid): ''' Returns True if the passed in value is a job id ''' if not isinstance(jid, six.string_types): return False if len(jid) != 20 and (len(jid) <= 21 or jid[20] != '_'): return False try: int(jid[:20]) return True except ValueError: ret...
python
def is_jid(jid): ''' Returns True if the passed in value is a job id ''' if not isinstance(jid, six.string_types): return False if len(jid) != 20 and (len(jid) <= 21 or jid[20] != '_'): return False try: int(jid[:20]) return True except ValueError: ret...
[ "def", "is_jid", "(", "jid", ")", ":", "if", "not", "isinstance", "(", "jid", ",", "six", ".", "string_types", ")", ":", "return", "False", "if", "len", "(", "jid", ")", "!=", "20", "and", "(", "len", "(", "jid", ")", "<=", "21", "or", "jid", "...
Returns True if the passed in value is a job id
[ "Returns", "True", "if", "the", "passed", "in", "value", "is", "a", "job", "id" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/jid.py#L42-L54
train
saltstack/salt
salt/utils/jid.py
jid_to_time
def jid_to_time(jid): ''' Convert a salt job id into the time when the job was invoked ''' jid = six.text_type(jid) if len(jid) != 20 and (len(jid) <= 21 or jid[20] != '_'): return '' year = jid[:4] month = jid[4:6] day = jid[6:8] hour = jid[8:10] minute = jid[10:12] ...
python
def jid_to_time(jid): ''' Convert a salt job id into the time when the job was invoked ''' jid = six.text_type(jid) if len(jid) != 20 and (len(jid) <= 21 or jid[20] != '_'): return '' year = jid[:4] month = jid[4:6] day = jid[6:8] hour = jid[8:10] minute = jid[10:12] ...
[ "def", "jid_to_time", "(", "jid", ")", ":", "jid", "=", "six", ".", "text_type", "(", "jid", ")", "if", "len", "(", "jid", ")", "!=", "20", "and", "(", "len", "(", "jid", ")", "<=", "21", "or", "jid", "[", "20", "]", "!=", "'_'", ")", ":", ...
Convert a salt job id into the time when the job was invoked
[ "Convert", "a", "salt", "job", "id", "into", "the", "time", "when", "the", "job", "was", "invoked" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/jid.py#L57-L79
train
saltstack/salt
salt/utils/jid.py
format_job_instance
def format_job_instance(job): ''' Format the job instance correctly ''' ret = {'Function': job.get('fun', 'unknown-function'), 'Arguments': list(job.get('arg', [])), # unlikely but safeguard from invalid returns 'Target': job.get('tgt', 'unknown-target'), 'Tar...
python
def format_job_instance(job): ''' Format the job instance correctly ''' ret = {'Function': job.get('fun', 'unknown-function'), 'Arguments': list(job.get('arg', [])), # unlikely but safeguard from invalid returns 'Target': job.get('tgt', 'unknown-target'), 'Tar...
[ "def", "format_job_instance", "(", "job", ")", ":", "ret", "=", "{", "'Function'", ":", "job", ".", "get", "(", "'fun'", ",", "'unknown-function'", ")", ",", "'Arguments'", ":", "list", "(", "job", ".", "get", "(", "'arg'", ",", "[", "]", ")", ")", ...
Format the job instance correctly
[ "Format", "the", "job", "instance", "correctly" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/jid.py#L82-L99
train
saltstack/salt
salt/utils/jid.py
format_jid_instance
def format_jid_instance(jid, job): ''' Format the jid correctly ''' ret = format_job_instance(job) ret.update({'StartTime': jid_to_time(jid)}) return ret
python
def format_jid_instance(jid, job): ''' Format the jid correctly ''' ret = format_job_instance(job) ret.update({'StartTime': jid_to_time(jid)}) return ret
[ "def", "format_jid_instance", "(", "jid", ",", "job", ")", ":", "ret", "=", "format_job_instance", "(", "job", ")", "ret", ".", "update", "(", "{", "'StartTime'", ":", "jid_to_time", "(", "jid", ")", "}", ")", "return", "ret" ]
Format the jid correctly
[ "Format", "the", "jid", "correctly" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/jid.py#L102-L108
train
saltstack/salt
salt/utils/jid.py
format_jid_instance_ext
def format_jid_instance_ext(jid, job): ''' Format the jid correctly with jid included ''' ret = format_job_instance(job) ret.update({ 'JID': jid, 'StartTime': jid_to_time(jid)}) return ret
python
def format_jid_instance_ext(jid, job): ''' Format the jid correctly with jid included ''' ret = format_job_instance(job) ret.update({ 'JID': jid, 'StartTime': jid_to_time(jid)}) return ret
[ "def", "format_jid_instance_ext", "(", "jid", ",", "job", ")", ":", "ret", "=", "format_job_instance", "(", "job", ")", "ret", ".", "update", "(", "{", "'JID'", ":", "jid", ",", "'StartTime'", ":", "jid_to_time", "(", "jid", ")", "}", ")", "return", "r...
Format the jid correctly with jid included
[ "Format", "the", "jid", "correctly", "with", "jid", "included" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/jid.py#L111-L119
train
saltstack/salt
salt/utils/jid.py
jid_dir
def jid_dir(jid, job_dir=None, hash_type='sha256'): ''' Return the jid_dir for the given job id ''' if not isinstance(jid, six.string_types): jid = six.text_type(jid) jhash = getattr(hashlib, hash_type)( salt.utils.stringutils.to_bytes(jid)).hexdigest() parts = [] if job_dir...
python
def jid_dir(jid, job_dir=None, hash_type='sha256'): ''' Return the jid_dir for the given job id ''' if not isinstance(jid, six.string_types): jid = six.text_type(jid) jhash = getattr(hashlib, hash_type)( salt.utils.stringutils.to_bytes(jid)).hexdigest() parts = [] if job_dir...
[ "def", "jid_dir", "(", "jid", ",", "job_dir", "=", "None", ",", "hash_type", "=", "'sha256'", ")", ":", "if", "not", "isinstance", "(", "jid", ",", "six", ".", "string_types", ")", ":", "jid", "=", "six", ".", "text_type", "(", "jid", ")", "jhash", ...
Return the jid_dir for the given job id
[ "Return", "the", "jid_dir", "for", "the", "given", "job", "id" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/jid.py#L122-L135
train
saltstack/salt
salt/modules/system.py
init
def init(runlevel): ''' Change the system runlevel on sysV compatible systems CLI Example: .. code-block:: bash salt '*' system.init 3 ''' cmd = ['init', '{0}'.format(runlevel)] ret = __salt__['cmd.run'](cmd, python_shell=False) return ret
python
def init(runlevel): ''' Change the system runlevel on sysV compatible systems CLI Example: .. code-block:: bash salt '*' system.init 3 ''' cmd = ['init', '{0}'.format(runlevel)] ret = __salt__['cmd.run'](cmd, python_shell=False) return ret
[ "def", "init", "(", "runlevel", ")", ":", "cmd", "=", "[", "'init'", ",", "'{0}'", ".", "format", "(", "runlevel", ")", "]", "ret", "=", "__salt__", "[", "'cmd.run'", "]", "(", "cmd", ",", "python_shell", "=", "False", ")", "return", "ret" ]
Change the system runlevel on sysV compatible systems CLI Example: .. code-block:: bash salt '*' system.init 3
[ "Change", "the", "system", "runlevel", "on", "sysV", "compatible", "systems" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L64-L76
train
saltstack/salt
salt/modules/system.py
reboot
def reboot(at_time=None): ''' Reboot the system at_time The wait time in minutes before the system will be rebooted. CLI Example: .. code-block:: bash salt '*' system.reboot ''' cmd = ['shutdown', '-r', ('{0}'.format(at_time) if at_time else 'now')] ret = __salt__['cm...
python
def reboot(at_time=None): ''' Reboot the system at_time The wait time in minutes before the system will be rebooted. CLI Example: .. code-block:: bash salt '*' system.reboot ''' cmd = ['shutdown', '-r', ('{0}'.format(at_time) if at_time else 'now')] ret = __salt__['cm...
[ "def", "reboot", "(", "at_time", "=", "None", ")", ":", "cmd", "=", "[", "'shutdown'", ",", "'-r'", ",", "(", "'{0}'", ".", "format", "(", "at_time", ")", "if", "at_time", "else", "'now'", ")", "]", "ret", "=", "__salt__", "[", "'cmd.run'", "]", "(...
Reboot the system at_time The wait time in minutes before the system will be rebooted. CLI Example: .. code-block:: bash salt '*' system.reboot
[ "Reboot", "the", "system" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L94-L109
train
saltstack/salt
salt/modules/system.py
shutdown
def shutdown(at_time=None): ''' Shutdown a running system at_time The wait time in minutes before the system will be shutdown. CLI Example: .. code-block:: bash salt '*' system.shutdown 5 ''' cmd = ['shutdown', '-h', ('{0}'.format(at_time) if at_time else 'now')] ret ...
python
def shutdown(at_time=None): ''' Shutdown a running system at_time The wait time in minutes before the system will be shutdown. CLI Example: .. code-block:: bash salt '*' system.shutdown 5 ''' cmd = ['shutdown', '-h', ('{0}'.format(at_time) if at_time else 'now')] ret ...
[ "def", "shutdown", "(", "at_time", "=", "None", ")", ":", "cmd", "=", "[", "'shutdown'", ",", "'-h'", ",", "(", "'{0}'", ".", "format", "(", "at_time", ")", "if", "at_time", "else", "'now'", ")", "]", "ret", "=", "__salt__", "[", "'cmd.run'", "]", ...
Shutdown a running system at_time The wait time in minutes before the system will be shutdown. CLI Example: .. code-block:: bash salt '*' system.shutdown 5
[ "Shutdown", "a", "running", "system" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L112-L127
train
saltstack/salt
salt/modules/system.py
_date_bin_set_datetime
def _date_bin_set_datetime(new_date): ''' set the system date/time using the date command Note using a strictly posix-compliant date binary we can only set the date up to the minute. ''' cmd = ['date'] # if there is a timezone in the datetime object use that offset # This will modify t...
python
def _date_bin_set_datetime(new_date): ''' set the system date/time using the date command Note using a strictly posix-compliant date binary we can only set the date up to the minute. ''' cmd = ['date'] # if there is a timezone in the datetime object use that offset # This will modify t...
[ "def", "_date_bin_set_datetime", "(", "new_date", ")", ":", "cmd", "=", "[", "'date'", "]", "# if there is a timezone in the datetime object use that offset", "# This will modify the new_date to be the equivalent time in UTC", "if", "new_date", ".", "utcoffset", "(", ")", "is",...
set the system date/time using the date command Note using a strictly posix-compliant date binary we can only set the date up to the minute.
[ "set", "the", "system", "date", "/", "time", "using", "the", "date", "command" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L130-L169
train
saltstack/salt
salt/modules/system.py
has_settable_hwclock
def has_settable_hwclock(): ''' Returns True if the system has a hardware clock capable of being set from software. CLI Example: salt '*' system.has_settable_hwclock ''' if salt.utils.path.which_bin(['hwclock']) is not None: res = __salt__['cmd.run_all']( ['hwclock', '-...
python
def has_settable_hwclock(): ''' Returns True if the system has a hardware clock capable of being set from software. CLI Example: salt '*' system.has_settable_hwclock ''' if salt.utils.path.which_bin(['hwclock']) is not None: res = __salt__['cmd.run_all']( ['hwclock', '-...
[ "def", "has_settable_hwclock", "(", ")", ":", "if", "salt", ".", "utils", ".", "path", ".", "which_bin", "(", "[", "'hwclock'", "]", ")", "is", "not", "None", ":", "res", "=", "__salt__", "[", "'cmd.run_all'", "]", "(", "[", "'hwclock'", ",", "'--test'...
Returns True if the system has a hardware clock capable of being set from software. CLI Example: salt '*' system.has_settable_hwclock
[ "Returns", "True", "if", "the", "system", "has", "a", "hardware", "clock", "capable", "of", "being", "set", "from", "software", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L172-L187
train
saltstack/salt
salt/modules/system.py
_swclock_to_hwclock
def _swclock_to_hwclock(): ''' Set hardware clock to value of software clock. ''' res = __salt__['cmd.run_all'](['hwclock', '--systohc'], python_shell=False) if res['retcode'] != 0: msg = 'hwclock failed to set hardware clock from software clock: {0}'.format(res['stderr']) raise Comm...
python
def _swclock_to_hwclock(): ''' Set hardware clock to value of software clock. ''' res = __salt__['cmd.run_all'](['hwclock', '--systohc'], python_shell=False) if res['retcode'] != 0: msg = 'hwclock failed to set hardware clock from software clock: {0}'.format(res['stderr']) raise Comm...
[ "def", "_swclock_to_hwclock", "(", ")", ":", "res", "=", "__salt__", "[", "'cmd.run_all'", "]", "(", "[", "'hwclock'", ",", "'--systohc'", "]", ",", "python_shell", "=", "False", ")", "if", "res", "[", "'retcode'", "]", "!=", "0", ":", "msg", "=", "'hw...
Set hardware clock to value of software clock.
[ "Set", "hardware", "clock", "to", "value", "of", "software", "clock", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L190-L198
train
saltstack/salt
salt/modules/system.py
_offset_to_min
def _offset_to_min(utc_offset): ''' Helper function that converts the utc offset string into number of minutes offset. Input is in form "[+-]?HHMM". Example valid inputs are "+0500" "-0300" and "0800". These would return -300, 180, 480 respectively. ''' match = re.match(r"^([+-])?(\d\d)(\d\d)$",...
python
def _offset_to_min(utc_offset): ''' Helper function that converts the utc offset string into number of minutes offset. Input is in form "[+-]?HHMM". Example valid inputs are "+0500" "-0300" and "0800". These would return -300, 180, 480 respectively. ''' match = re.match(r"^([+-])?(\d\d)(\d\d)$",...
[ "def", "_offset_to_min", "(", "utc_offset", ")", ":", "match", "=", "re", ".", "match", "(", "r\"^([+-])?(\\d\\d)(\\d\\d)$\"", ",", "utc_offset", ")", "if", "not", "match", ":", "raise", "SaltInvocationError", "(", "\"Invalid UTC offset\"", ")", "sign", "=", "-"...
Helper function that converts the utc offset string into number of minutes offset. Input is in form "[+-]?HHMM". Example valid inputs are "+0500" "-0300" and "0800". These would return -300, 180, 480 respectively.
[ "Helper", "function", "that", "converts", "the", "utc", "offset", "string", "into", "number", "of", "minutes", "offset", ".", "Input", "is", "in", "form", "[", "+", "-", "]", "?HHMM", ".", "Example", "valid", "inputs", "are", "+", "0500", "-", "0300", ...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L221-L235
train
saltstack/salt
salt/modules/system.py
_get_offset_time
def _get_offset_time(utc_offset): ''' Will return the current time adjusted using the input timezone offset. :rtype datetime: ''' if utc_offset is not None: minutes = _offset_to_min(utc_offset) offset = timedelta(minutes=minutes) offset_time = datetime.utcnow() + offset ...
python
def _get_offset_time(utc_offset): ''' Will return the current time adjusted using the input timezone offset. :rtype datetime: ''' if utc_offset is not None: minutes = _offset_to_min(utc_offset) offset = timedelta(minutes=minutes) offset_time = datetime.utcnow() + offset ...
[ "def", "_get_offset_time", "(", "utc_offset", ")", ":", "if", "utc_offset", "is", "not", "None", ":", "minutes", "=", "_offset_to_min", "(", "utc_offset", ")", "offset", "=", "timedelta", "(", "minutes", "=", "minutes", ")", "offset_time", "=", "datetime", "...
Will return the current time adjusted using the input timezone offset. :rtype datetime:
[ "Will", "return", "the", "current", "time", "adjusted", "using", "the", "input", "timezone", "offset", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L238-L251
train
saltstack/salt
salt/modules/system.py
set_system_time
def set_system_time(newtime, utc_offset=None): ''' Set the system time. :param str newtime: The time to set. Can be any of the following formats. - HH:MM:SS AM/PM - HH:MM AM/PM - HH:MM:SS (24 hour) - HH:MM (24 hour) Note that the salt command line parser par...
python
def set_system_time(newtime, utc_offset=None): ''' Set the system time. :param str newtime: The time to set. Can be any of the following formats. - HH:MM:SS AM/PM - HH:MM AM/PM - HH:MM:SS (24 hour) - HH:MM (24 hour) Note that the salt command line parser par...
[ "def", "set_system_time", "(", "newtime", ",", "utc_offset", "=", "None", ")", ":", "fmts", "=", "[", "'%I:%M:%S %p'", ",", "'%I:%M %p'", ",", "'%H:%M:%S'", ",", "'%H:%M'", "]", "dt_obj", "=", "_try_parse_datetime", "(", "newtime", ",", "fmts", ")", "if", ...
Set the system time. :param str newtime: The time to set. Can be any of the following formats. - HH:MM:SS AM/PM - HH:MM AM/PM - HH:MM:SS (24 hour) - HH:MM (24 hour) Note that the salt command line parser parses the date/time before we obtain the argument (pr...
[ "Set", "the", "system", "time", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L276-L312
train
saltstack/salt
salt/modules/system.py
set_system_date_time
def set_system_date_time(years=None, months=None, days=None, hours=None, minutes=None, seconds=None, utc_offset=None): ''' Set the system date and time. Each argu...
python
def set_system_date_time(years=None, months=None, days=None, hours=None, minutes=None, seconds=None, utc_offset=None): ''' Set the system date and time. Each argu...
[ "def", "set_system_date_time", "(", "years", "=", "None", ",", "months", "=", "None", ",", "days", "=", "None", ",", "hours", "=", "None", ",", "minutes", "=", "None", ",", "seconds", "=", "None", ",", "utc_offset", "=", "None", ")", ":", "# Get the cu...
Set the system date and time. Each argument is an element of the date, but not required. If an element is not passed, the current system value for that element will be used. For example, if you don't pass the year, the current system year will be used. (Used by set_system_date and set_system_time) ...
[ "Set", "the", "system", "date", "and", "time", ".", "Each", "argument", "is", "an", "element", "of", "the", "date", "but", "not", "required", ".", "If", "an", "element", "is", "not", "passed", "the", "current", "system", "value", "for", "that", "element"...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L337-L405
train
saltstack/salt
salt/modules/system.py
get_computer_desc
def get_computer_desc(): ''' Get PRETTY_HOSTNAME value stored in /etc/machine-info If this file doesn't exist or the variable doesn't exist return False. :return: Value of PRETTY_HOSTNAME if this does not exist False. :rtype: str CLI Example: .. code-block:: bash salt '*' sys...
python
def get_computer_desc(): ''' Get PRETTY_HOSTNAME value stored in /etc/machine-info If this file doesn't exist or the variable doesn't exist return False. :return: Value of PRETTY_HOSTNAME if this does not exist False. :rtype: str CLI Example: .. code-block:: bash salt '*' sys...
[ "def", "get_computer_desc", "(", ")", ":", "hostname_cmd", "=", "salt", ".", "utils", ".", "path", ".", "which", "(", "'hostnamectl'", ")", "if", "hostname_cmd", ":", "desc", "=", "__salt__", "[", "'cmd.run'", "]", "(", "[", "hostname_cmd", ",", "'status'"...
Get PRETTY_HOSTNAME value stored in /etc/machine-info If this file doesn't exist or the variable doesn't exist return False. :return: Value of PRETTY_HOSTNAME if this does not exist False. :rtype: str CLI Example: .. code-block:: bash salt '*' system.get_computer_desc
[ "Get", "PRETTY_HOSTNAME", "value", "stored", "in", "/", "etc", "/", "machine", "-", "info", "If", "this", "file", "doesn", "t", "exist", "or", "the", "variable", "doesn", "t", "exist", "return", "False", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L496-L535
train
saltstack/salt
salt/modules/system.py
set_computer_desc
def set_computer_desc(desc): ''' Set PRETTY_HOSTNAME value stored in /etc/machine-info This will create the file if it does not exist. If it is unable to create or modify this file returns False. :param str desc: The computer description :return: False on failure. True if successful. CLI E...
python
def set_computer_desc(desc): ''' Set PRETTY_HOSTNAME value stored in /etc/machine-info This will create the file if it does not exist. If it is unable to create or modify this file returns False. :param str desc: The computer description :return: False on failure. True if successful. CLI E...
[ "def", "set_computer_desc", "(", "desc", ")", ":", "desc", "=", "salt", ".", "utils", ".", "stringutils", ".", "to_unicode", "(", "desc", ")", ".", "replace", "(", "'\"'", ",", "r'\\\"'", ")", ".", "replace", "(", "'\\n'", ",", "r'\\n'", ")", ".", "r...
Set PRETTY_HOSTNAME value stored in /etc/machine-info This will create the file if it does not exist. If it is unable to create or modify this file returns False. :param str desc: The computer description :return: False on failure. True if successful. CLI Example: .. code-block:: bash ...
[ "Set", "PRETTY_HOSTNAME", "value", "stored", "in", "/", "etc", "/", "machine", "-", "info", "This", "will", "create", "the", "file", "if", "it", "does", "not", "exist", ".", "If", "it", "is", "unable", "to", "create", "or", "modify", "this", "file", "r...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L538-L586
train
saltstack/salt
salt/modules/system.py
set_reboot_required_witnessed
def set_reboot_required_witnessed(): ''' This function is used to remember that an event indicating that a reboot is required was witnessed. This function writes to a temporary filesystem so the event gets cleared upon reboot. Returns: bool: ``True`` if successful, otherwise ``False`` ...
python
def set_reboot_required_witnessed(): ''' This function is used to remember that an event indicating that a reboot is required was witnessed. This function writes to a temporary filesystem so the event gets cleared upon reboot. Returns: bool: ``True`` if successful, otherwise ``False`` ...
[ "def", "set_reboot_required_witnessed", "(", ")", ":", "errcode", "=", "-", "1", "dir_path", "=", "os", ".", "path", ".", "dirname", "(", "NILRT_REBOOT_WITNESS_PATH", ")", "if", "not", "os", ".", "path", ".", "exists", "(", "dir_path", ")", ":", "try", "...
This function is used to remember that an event indicating that a reboot is required was witnessed. This function writes to a temporary filesystem so the event gets cleared upon reboot. Returns: bool: ``True`` if successful, otherwise ``False`` .. code-block:: bash salt '*' system.set...
[ "This", "function", "is", "used", "to", "remember", "that", "an", "event", "indicating", "that", "a", "reboot", "is", "required", "was", "witnessed", ".", "This", "function", "writes", "to", "a", "temporary", "filesystem", "so", "the", "event", "gets", "clea...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/system.py#L626-L651
train
saltstack/salt
salt/transport/ipc.py
IPCServer.handle_stream
def handle_stream(self, stream): ''' Override this to handle the streams as they arrive :param IOStream stream: An IOStream for processing See https://tornado.readthedocs.io/en/latest/iostream.html#tornado.iostream.IOStream for additional details. ''' @tornado.g...
python
def handle_stream(self, stream): ''' Override this to handle the streams as they arrive :param IOStream stream: An IOStream for processing See https://tornado.readthedocs.io/en/latest/iostream.html#tornado.iostream.IOStream for additional details. ''' @tornado.g...
[ "def", "handle_stream", "(", "self", ",", "stream", ")", ":", "@", "tornado", ".", "gen", ".", "coroutine", "def", "_null", "(", "msg", ")", ":", "raise", "tornado", ".", "gen", ".", "Return", "(", "None", ")", "def", "write_callback", "(", "stream", ...
Override this to handle the streams as they arrive :param IOStream stream: An IOStream for processing See https://tornado.readthedocs.io/en/latest/iostream.html#tornado.iostream.IOStream for additional details.
[ "Override", "this", "to", "handle", "the", "streams", "as", "they", "arrive" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L150-L202
train
saltstack/salt
salt/transport/ipc.py
IPCServer.close
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if self._closing: return self._closing = True if hasattr(self.sock, 'close'): ...
python
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if self._closing: return self._closing = True if hasattr(self.sock, 'close'): ...
[ "def", "close", "(", "self", ")", ":", "if", "self", ".", "_closing", ":", "return", "self", ".", "_closing", "=", "True", "if", "hasattr", "(", "self", ".", "sock", ",", "'close'", ")", ":", "self", ".", "sock", ".", "close", "(", ")" ]
Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks.
[ "Routines", "to", "handle", "any", "cleanup", "before", "the", "instance", "shuts", "down", ".", "Sockets", "and", "filehandles", "should", "be", "closed", "explicitly", "to", "prevent", "leaks", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L216-L226
train
saltstack/salt
salt/transport/ipc.py
IPCClient.connect
def connect(self, callback=None, timeout=None): ''' Connect to the IPC socket ''' if hasattr(self, '_connecting_future') and not self._connecting_future.done(): # pylint: disable=E0203 future = self._connecting_future # pylint: disable=E0203 else: if has...
python
def connect(self, callback=None, timeout=None): ''' Connect to the IPC socket ''' if hasattr(self, '_connecting_future') and not self._connecting_future.done(): # pylint: disable=E0203 future = self._connecting_future # pylint: disable=E0203 else: if has...
[ "def", "connect", "(", "self", ",", "callback", "=", "None", ",", "timeout", "=", "None", ")", ":", "if", "hasattr", "(", "self", ",", "'_connecting_future'", ")", "and", "not", "self", ".", "_connecting_future", ".", "done", "(", ")", ":", "# pylint: di...
Connect to the IPC socket
[ "Connect", "to", "the", "IPC", "socket" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L308-L328
train
saltstack/salt
salt/transport/ipc.py
IPCClient._connect
def _connect(self, timeout=None): ''' Connect to a running IPCServer ''' if isinstance(self.socket_path, int): sock_type = socket.AF_INET sock_addr = ('127.0.0.1', self.socket_path) else: sock_type = socket.AF_UNIX sock_addr = self....
python
def _connect(self, timeout=None): ''' Connect to a running IPCServer ''' if isinstance(self.socket_path, int): sock_type = socket.AF_INET sock_addr = ('127.0.0.1', self.socket_path) else: sock_type = socket.AF_UNIX sock_addr = self....
[ "def", "_connect", "(", "self", ",", "timeout", "=", "None", ")", ":", "if", "isinstance", "(", "self", ".", "socket_path", ",", "int", ")", ":", "sock_type", "=", "socket", ".", "AF_INET", "sock_addr", "=", "(", "'127.0.0.1'", ",", "self", ".", "socke...
Connect to a running IPCServer
[ "Connect", "to", "a", "running", "IPCServer" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L331-L372
train
saltstack/salt
salt/transport/ipc.py
IPCClient.close
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if self._closing: return if self._refcount > 1: # Decrease refcount ...
python
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if self._closing: return if self._refcount > 1: # Decrease refcount ...
[ "def", "close", "(", "self", ")", ":", "if", "self", ".", "_closing", ":", "return", "if", "self", ".", "_refcount", ">", "1", ":", "# Decrease refcount", "with", "self", ".", "_refcount_lock", ":", "self", ".", "_refcount", "-=", "1", "log", ".", "deb...
Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks.
[ "Routines", "to", "handle", "any", "cleanup", "before", "the", "instance", "shuts", "down", ".", "Sockets", "and", "filehandles", "should", "be", "closed", "explicitly", "to", "prevent", "leaks", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L391-L426
train
saltstack/salt
salt/transport/ipc.py
IPCMessageClient.send
def send(self, msg, timeout=None, tries=None): ''' Send a message to an IPC socket If the socket is not currently connected, a connection will be established. :param dict msg: The message to be sent :param int timeout: Timeout when sending message (Currently unimplemented) ...
python
def send(self, msg, timeout=None, tries=None): ''' Send a message to an IPC socket If the socket is not currently connected, a connection will be established. :param dict msg: The message to be sent :param int timeout: Timeout when sending message (Currently unimplemented) ...
[ "def", "send", "(", "self", ",", "msg", ",", "timeout", "=", "None", ",", "tries", "=", "None", ")", ":", "if", "not", "self", ".", "connected", "(", ")", ":", "yield", "self", ".", "connect", "(", ")", "pack", "=", "salt", ".", "transport", ".",...
Send a message to an IPC socket If the socket is not currently connected, a connection will be established. :param dict msg: The message to be sent :param int timeout: Timeout when sending message (Currently unimplemented)
[ "Send", "a", "message", "to", "an", "IPC", "socket" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L462-L474
train
saltstack/salt
salt/transport/ipc.py
IPCMessagePublisher.start
def start(self): ''' Perform the work necessary to start up a Tornado IPC server Blocks until socket is established ''' # Start up the ioloop log.trace('IPCMessagePublisher: binding to socket: %s', self.socket_path) if isinstance(self.socket_path, int): ...
python
def start(self): ''' Perform the work necessary to start up a Tornado IPC server Blocks until socket is established ''' # Start up the ioloop log.trace('IPCMessagePublisher: binding to socket: %s', self.socket_path) if isinstance(self.socket_path, int): ...
[ "def", "start", "(", "self", ")", ":", "# Start up the ioloop", "log", ".", "trace", "(", "'IPCMessagePublisher: binding to socket: %s'", ",", "self", ".", "socket_path", ")", "if", "isinstance", "(", "self", ".", "socket_path", ",", "int", ")", ":", "self", "...
Perform the work necessary to start up a Tornado IPC server Blocks until socket is established
[ "Perform", "the", "work", "necessary", "to", "start", "up", "a", "Tornado", "IPC", "server" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L540-L568
train
saltstack/salt
salt/transport/ipc.py
IPCMessagePublisher.publish
def publish(self, msg): ''' Send message to all connected sockets ''' if not self.streams: return pack = salt.transport.frame.frame_msg_ipc(msg, raw_body=True) for stream in self.streams: self.io_loop.spawn_callback(self._write, stream, pack)
python
def publish(self, msg): ''' Send message to all connected sockets ''' if not self.streams: return pack = salt.transport.frame.frame_msg_ipc(msg, raw_body=True) for stream in self.streams: self.io_loop.spawn_callback(self._write, stream, pack)
[ "def", "publish", "(", "self", ",", "msg", ")", ":", "if", "not", "self", ".", "streams", ":", "return", "pack", "=", "salt", ".", "transport", ".", "frame", ".", "frame_msg_ipc", "(", "msg", ",", "raw_body", "=", "True", ")", "for", "stream", "in", ...
Send message to all connected sockets
[ "Send", "message", "to", "all", "connected", "sockets" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L583-L593
train
saltstack/salt
salt/transport/ipc.py
IPCMessagePublisher.close
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if self._closing: return self._closing = True for stream in self.streams: ...
python
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if self._closing: return self._closing = True for stream in self.streams: ...
[ "def", "close", "(", "self", ")", ":", "if", "self", ".", "_closing", ":", "return", "self", ".", "_closing", "=", "True", "for", "stream", "in", "self", ".", "streams", ":", "stream", ".", "close", "(", ")", "self", ".", "streams", ".", "clear", "...
Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks.
[ "Routines", "to", "handle", "any", "cleanup", "before", "the", "instance", "shuts", "down", ".", "Sockets", "and", "filehandles", "should", "be", "closed", "explicitly", "to", "prevent", "leaks", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L616-L629
train
saltstack/salt
salt/transport/ipc.py
IPCMessageSubscriber.read_sync
def read_sync(self, timeout=None): ''' Read a message from an IPC socket The socket must already be connected. The associated IO Loop must NOT be running. :param int timeout: Timeout when receiving message :return: message data if successful. None if timed out. Will rais...
python
def read_sync(self, timeout=None): ''' Read a message from an IPC socket The socket must already be connected. The associated IO Loop must NOT be running. :param int timeout: Timeout when receiving message :return: message data if successful. None if timed out. Will rais...
[ "def", "read_sync", "(", "self", ",", "timeout", "=", "None", ")", ":", "if", "self", ".", "saved_data", ":", "return", "self", ".", "saved_data", ".", "pop", "(", "0", ")", "self", ".", "_sync_ioloop_running", "=", "True", "self", ".", "_read_sync_futur...
Read a message from an IPC socket The socket must already be connected. The associated IO Loop must NOT be running. :param int timeout: Timeout when receiving message :return: message data if successful. None if timed out. Will raise an exception for all other error con...
[ "Read", "a", "message", "from", "an", "IPC", "socket" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L743-L763
train
saltstack/salt
salt/transport/ipc.py
IPCMessageSubscriber.read_async
def read_async(self): ''' Asynchronously read messages and invoke a callback when they are ready. :param callback: A callback with the received data ''' while not self.connected(): try: yield self.connect(timeout=5) except tornado.iostream...
python
def read_async(self): ''' Asynchronously read messages and invoke a callback when they are ready. :param callback: A callback with the received data ''' while not self.connected(): try: yield self.connect(timeout=5) except tornado.iostream...
[ "def", "read_async", "(", "self", ")", ":", "while", "not", "self", ".", "connected", "(", ")", ":", "try", ":", "yield", "self", ".", "connect", "(", "timeout", "=", "5", ")", "except", "tornado", ".", "iostream", ".", "StreamClosedError", ":", "log",...
Asynchronously read messages and invoke a callback when they are ready. :param callback: A callback with the received data
[ "Asynchronously", "read", "messages", "and", "invoke", "a", "callback", "when", "they", "are", "ready", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L788-L803
train
saltstack/salt
salt/transport/ipc.py
IPCMessageSubscriber.close
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if not self._closing: IPCClient.close(self) if self._closing: # This will...
python
def close(self): ''' Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks. ''' if not self._closing: IPCClient.close(self) if self._closing: # This will...
[ "def", "close", "(", "self", ")", ":", "if", "not", "self", ".", "_closing", ":", "IPCClient", ".", "close", "(", "self", ")", "if", "self", ".", "_closing", ":", "# This will prevent this message from showing up:", "# '[ERROR ] Future exception was never retrieved:...
Routines to handle any cleanup before the instance shuts down. Sockets and filehandles should be closed explicitly, to prevent leaks.
[ "Routines", "to", "handle", "any", "cleanup", "before", "the", "instance", "shuts", "down", ".", "Sockets", "and", "filehandles", "should", "be", "closed", "explicitly", "to", "prevent", "leaks", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/transport/ipc.py#L805-L820
train
saltstack/salt
salt/modules/schedule.py
list_
def list_(show_all=False, show_disabled=True, where=None, return_yaml=True): ''' List the jobs currently scheduled on the minion CLI Example: .. code-block:: bash salt '*' schedule.list # Show all jobs including hidden internal jobs salt '*' sche...
python
def list_(show_all=False, show_disabled=True, where=None, return_yaml=True): ''' List the jobs currently scheduled on the minion CLI Example: .. code-block:: bash salt '*' schedule.list # Show all jobs including hidden internal jobs salt '*' sche...
[ "def", "list_", "(", "show_all", "=", "False", ",", "show_disabled", "=", "True", ",", "where", "=", "None", ",", "return_yaml", "=", "True", ")", ":", "schedule", "=", "{", "}", "try", ":", "eventer", "=", "salt", ".", "utils", ".", "event", ".", ...
List the jobs currently scheduled on the minion CLI Example: .. code-block:: bash salt '*' schedule.list # Show all jobs including hidden internal jobs salt '*' schedule.list show_all=True # Hide disabled jobs from list of jobs salt '*' schedule.list show_disabled=Fa...
[ "List", "the", "jobs", "currently", "scheduled", "on", "the", "minion" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L75-L159
train
saltstack/salt
salt/modules/schedule.py
is_enabled
def is_enabled(name): ''' List a Job only if its enabled .. versionadded:: 2015.5.3 CLI Example: .. code-block:: bash salt '*' schedule.is_enabled name=job_name ''' current_schedule = __salt__['schedule.list'](show_all=False, return_yaml=False) if name in current_schedule: ...
python
def is_enabled(name): ''' List a Job only if its enabled .. versionadded:: 2015.5.3 CLI Example: .. code-block:: bash salt '*' schedule.is_enabled name=job_name ''' current_schedule = __salt__['schedule.list'](show_all=False, return_yaml=False) if name in current_schedule: ...
[ "def", "is_enabled", "(", "name", ")", ":", "current_schedule", "=", "__salt__", "[", "'schedule.list'", "]", "(", "show_all", "=", "False", ",", "return_yaml", "=", "False", ")", "if", "name", "in", "current_schedule", ":", "return", "current_schedule", "[", ...
List a Job only if its enabled .. versionadded:: 2015.5.3 CLI Example: .. code-block:: bash salt '*' schedule.is_enabled name=job_name
[ "List", "a", "Job", "only", "if", "its", "enabled" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L162-L179
train
saltstack/salt
salt/modules/schedule.py
purge
def purge(**kwargs): ''' Purge all the jobs currently scheduled on the minion CLI Example: .. code-block:: bash salt '*' schedule.purge ''' ret = {'comment': [], 'result': True} for name in list_(show_all=True, return_yaml=False): if name == 'enabled': ...
python
def purge(**kwargs): ''' Purge all the jobs currently scheduled on the minion CLI Example: .. code-block:: bash salt '*' schedule.purge ''' ret = {'comment': [], 'result': True} for name in list_(show_all=True, return_yaml=False): if name == 'enabled': ...
[ "def", "purge", "(", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "'result'", ":", "True", "}", "for", "name", "in", "list_", "(", "show_all", "=", "True", ",", "return_yaml", "=", "False", ")", ":", "if", "name...
Purge all the jobs currently scheduled on the minion CLI Example: .. code-block:: bash salt '*' schedule.purge
[ "Purge", "all", "the", "jobs", "currently", "scheduled", "on", "the", "minion" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L182-L231
train
saltstack/salt
salt/modules/schedule.py
build_schedule_item
def build_schedule_item(name, **kwargs): ''' Build a schedule job CLI Example: .. code-block:: bash salt '*' schedule.build_schedule_item job1 function='test.ping' seconds=3600 ''' ret = {'comment': [], 'result': True} if not name: ret['comment'] = 'Job name i...
python
def build_schedule_item(name, **kwargs): ''' Build a schedule job CLI Example: .. code-block:: bash salt '*' schedule.build_schedule_item job1 function='test.ping' seconds=3600 ''' ret = {'comment': [], 'result': True} if not name: ret['comment'] = 'Job name i...
[ "def", "build_schedule_item", "(", "name", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "'result'", ":", "True", "}", "if", "not", "name", ":", "ret", "[", "'comment'", "]", "=", "'Job name is required.'", "ret",...
Build a schedule job CLI Example: .. code-block:: bash salt '*' schedule.build_schedule_item job1 function='test.ping' seconds=3600
[ "Build", "a", "schedule", "job" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L286-L393
train
saltstack/salt
salt/modules/schedule.py
add
def add(name, **kwargs): ''' Add a job to the schedule CLI Example: .. code-block:: bash salt '*' schedule.add job1 function='test.ping' seconds=3600 # If function have some arguments, use job_args salt '*' schedule.add job2 function='cmd.run' job_args="['date >> /tmp/date.log...
python
def add(name, **kwargs): ''' Add a job to the schedule CLI Example: .. code-block:: bash salt '*' schedule.add job1 function='test.ping' seconds=3600 # If function have some arguments, use job_args salt '*' schedule.add job2 function='cmd.run' job_args="['date >> /tmp/date.log...
[ "def", "add", "(", "name", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'comment'", ":", "'Failed to add job {0} to schedule.'", ".", "format", "(", "name", ")", ",", "'result'", ":", "False", "}", "if", "name", "in", "list_", "(", "show_all", ...
Add a job to the schedule CLI Example: .. code-block:: bash salt '*' schedule.add job1 function='test.ping' seconds=3600 # If function have some arguments, use job_args salt '*' schedule.add job2 function='cmd.run' job_args="['date >> /tmp/date.log']" seconds=60
[ "Add", "a", "job", "to", "the", "schedule" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L396-L468
train
saltstack/salt
salt/modules/schedule.py
modify
def modify(name, **kwargs): ''' Modify an existing job in the schedule CLI Example: .. code-block:: bash salt '*' schedule.modify job1 function='test.ping' seconds=3600 ''' ret = {'comment': '', 'changes': {}, 'result': True} time_conflict = False for i...
python
def modify(name, **kwargs): ''' Modify an existing job in the schedule CLI Example: .. code-block:: bash salt '*' schedule.modify job1 function='test.ping' seconds=3600 ''' ret = {'comment': '', 'changes': {}, 'result': True} time_conflict = False for i...
[ "def", "modify", "(", "name", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'comment'", ":", "''", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "True", "}", "time_conflict", "=", "False", "for", "item", "in", "[", "'seconds'", ",",...
Modify an existing job in the schedule CLI Example: .. code-block:: bash salt '*' schedule.modify job1 function='test.ping' seconds=3600
[ "Modify", "an", "existing", "job", "in", "the", "schedule" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L471-L556
train
saltstack/salt
salt/modules/schedule.py
run_job
def run_job(name, force=False): ''' Run a scheduled job on the minion immediately CLI Example: .. code-block:: bash salt '*' schedule.run_job job1 salt '*' schedule.run_job job1 force=True Force the job to run even if it is disabled. ''' ret = {'comment': [], ...
python
def run_job(name, force=False): ''' Run a scheduled job on the minion immediately CLI Example: .. code-block:: bash salt '*' schedule.run_job job1 salt '*' schedule.run_job job1 force=True Force the job to run even if it is disabled. ''' ret = {'comment': [], ...
[ "def", "run_job", "(", "name", ",", "force", "=", "False", ")", ":", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "'result'", ":", "True", "}", "if", "not", "name", ":", "ret", "[", "'comment'", "]", "=", "'Job name is required.'", "ret", "[", ...
Run a scheduled job on the minion immediately CLI Example: .. code-block:: bash salt '*' schedule.run_job job1 salt '*' schedule.run_job job1 force=True Force the job to run even if it is disabled.
[ "Run", "a", "scheduled", "job", "on", "the", "minion", "immediately" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L559-L595
train
saltstack/salt
salt/modules/schedule.py
enable_job
def enable_job(name, **kwargs): ''' Enable a job in the minion's schedule CLI Example: .. code-block:: bash salt '*' schedule.enable_job job1 ''' ret = {'comment': [], 'result': True} if not name: ret['comment'] = 'Job name is required.' ret['result'] ...
python
def enable_job(name, **kwargs): ''' Enable a job in the minion's schedule CLI Example: .. code-block:: bash salt '*' schedule.enable_job job1 ''' ret = {'comment': [], 'result': True} if not name: ret['comment'] = 'Job name is required.' ret['result'] ...
[ "def", "enable_job", "(", "name", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "'result'", ":", "True", "}", "if", "not", "name", ":", "ret", "[", "'comment'", "]", "=", "'Job name is required.'", "ret", "[", ...
Enable a job in the minion's schedule CLI Example: .. code-block:: bash salt '*' schedule.enable_job job1
[ "Enable", "a", "job", "in", "the", "minion", "s", "schedule" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L598-L650
train
saltstack/salt
salt/modules/schedule.py
save
def save(**kwargs): ''' Save all scheduled jobs on the minion CLI Example: .. code-block:: bash salt '*' schedule.save ''' ret = {'comment': [], 'result': True} if 'test' in kwargs and kwargs['test']: ret['comment'] = 'Schedule would be saved.' else: ...
python
def save(**kwargs): ''' Save all scheduled jobs on the minion CLI Example: .. code-block:: bash salt '*' schedule.save ''' ret = {'comment': [], 'result': True} if 'test' in kwargs and kwargs['test']: ret['comment'] = 'Schedule would be saved.' else: ...
[ "def", "save", "(", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "'result'", ":", "True", "}", "if", "'test'", "in", "kwargs", "and", "kwargs", "[", "'test'", "]", ":", "ret", "[", "'comment'", "]", "=", "'Sched...
Save all scheduled jobs on the minion CLI Example: .. code-block:: bash salt '*' schedule.save
[ "Save", "all", "scheduled", "jobs", "on", "the", "minion" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L708-L739
train
saltstack/salt
salt/modules/schedule.py
reload_
def reload_(): ''' Reload saved scheduled jobs on the minion CLI Example: .. code-block:: bash salt '*' schedule.reload ''' ret = {'comment': [], 'result': True} # If there a schedule defined in pillar, refresh it. if 'schedule' in __pillar__: out = __salt...
python
def reload_(): ''' Reload saved scheduled jobs on the minion CLI Example: .. code-block:: bash salt '*' schedule.reload ''' ret = {'comment': [], 'result': True} # If there a schedule defined in pillar, refresh it. if 'schedule' in __pillar__: out = __salt...
[ "def", "reload_", "(", ")", ":", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "'result'", ":", "True", "}", "# If there a schedule defined in pillar, refresh it.", "if", "'schedule'", "in", "__pillar__", ":", "out", "=", "__salt__", "[", "'event.fire'", "...
Reload saved scheduled jobs on the minion CLI Example: .. code-block:: bash salt '*' schedule.reload
[ "Reload", "saved", "scheduled", "jobs", "on", "the", "minion" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L816-L862
train
saltstack/salt
salt/modules/schedule.py
move
def move(name, target, **kwargs): ''' Move scheduled job to another minion or minions. CLI Example: .. code-block:: bash salt '*' schedule.move jobname target ''' ret = {'comment': [], 'result': True} if not name: ret['comment'] = 'Job name is required.' ...
python
def move(name, target, **kwargs): ''' Move scheduled job to another minion or minions. CLI Example: .. code-block:: bash salt '*' schedule.move jobname target ''' ret = {'comment': [], 'result': True} if not name: ret['comment'] = 'Job name is required.' ...
[ "def", "move", "(", "name", ",", "target", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "'result'", ":", "True", "}", "if", "not", "name", ":", "ret", "[", "'comment'", "]", "=", "'Job name is required.'", "r...
Move scheduled job to another minion or minions. CLI Example: .. code-block:: bash salt '*' schedule.move jobname target
[ "Move", "scheduled", "job", "to", "another", "minion", "or", "minions", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L865-L928
train
saltstack/salt
salt/modules/schedule.py
postpone_job
def postpone_job(name, current_time, new_time, **kwargs): ''' Postpone a job in the minion's schedule Current time and new time should be in date string format, default value is %Y-%m-%dT%H:%M:%S. .. versionadded:: 2018.3.0 CLI Example: ...
python
def postpone_job(name, current_time, new_time, **kwargs): ''' Postpone a job in the minion's schedule Current time and new time should be in date string format, default value is %Y-%m-%dT%H:%M:%S. .. versionadded:: 2018.3.0 CLI Example: ...
[ "def", "postpone_job", "(", "name", ",", "current_time", ",", "new_time", ",", "*", "*", "kwargs", ")", ":", "time_fmt", "=", "kwargs", ".", "get", "(", "'time_fmt'", ")", "or", "'%Y-%m-%dT%H:%M:%S'", "ret", "=", "{", "'comment'", ":", "[", "]", ",", "...
Postpone a job in the minion's schedule Current time and new time should be in date string format, default value is %Y-%m-%dT%H:%M:%S. .. versionadded:: 2018.3.0 CLI Example: .. code-block:: bash salt '*' schedule.postpone_job job current_time new_time salt '*' schedule.postpon...
[ "Postpone", "a", "job", "in", "the", "minion", "s", "schedule" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/schedule.py#L994-L1096
train
saltstack/salt
salt/utils/platform.py
is_proxy
def is_proxy(): ''' Return True if this minion is a proxy minion. Leverages the fact that is_linux() and is_windows both return False for proxies. TODO: Need to extend this for proxies that might run on other Unices ''' import __main__ as main # This is a hack. If a proxy minion is ...
python
def is_proxy(): ''' Return True if this minion is a proxy minion. Leverages the fact that is_linux() and is_windows both return False for proxies. TODO: Need to extend this for proxies that might run on other Unices ''' import __main__ as main # This is a hack. If a proxy minion is ...
[ "def", "is_proxy", "(", ")", ":", "import", "__main__", "as", "main", "# This is a hack. If a proxy minion is started by other", "# means, e.g. a custom script that creates the minion objects", "# then this will fail.", "ret", "=", "False", "try", ":", "# Changed this from 'salt-p...
Return True if this minion is a proxy minion. Leverages the fact that is_linux() and is_windows both return False for proxies. TODO: Need to extend this for proxies that might run on other Unices
[ "Return", "True", "if", "this", "minion", "is", "a", "proxy", "minion", ".", "Leverages", "the", "fact", "that", "is_linux", "()", "and", "is_windows", "both", "return", "False", "for", "proxies", ".", "TODO", ":", "Need", "to", "extend", "this", "for", ...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/platform.py#L24-L47
train
saltstack/salt
salt/utils/platform.py
is_smartos_globalzone
def is_smartos_globalzone(): ''' Function to return if host is SmartOS (Illumos) global zone or not ''' if not is_smartos(): return False else: cmd = ['zonename'] try: zonename = subprocess.Popen( cmd, shell=False, stdout=subprocess...
python
def is_smartos_globalzone(): ''' Function to return if host is SmartOS (Illumos) global zone or not ''' if not is_smartos(): return False else: cmd = ['zonename'] try: zonename = subprocess.Popen( cmd, shell=False, stdout=subprocess...
[ "def", "is_smartos_globalzone", "(", ")", ":", "if", "not", "is_smartos", "(", ")", ":", "return", "False", "else", ":", "cmd", "=", "[", "'zonename'", "]", "try", ":", "zonename", "=", "subprocess", ".", "Popen", "(", "cmd", ",", "shell", "=", "False"...
Function to return if host is SmartOS (Illumos) global zone or not
[ "Function", "to", "return", "if", "host", "is", "SmartOS", "(", "Illumos", ")", "global", "zone", "or", "not" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/platform.py#L87-L106
train
saltstack/salt
salt/modules/genesis.py
bootstrap
def bootstrap( platform, root, img_format='dir', fs_format='ext2', fs_opts=None, arch=None, flavor=None, repo_url=None, static_qemu=None, img_size=None, mount_dir=None, pkg_cache=None, pkgs=None, exclude_pkgs...
python
def bootstrap( platform, root, img_format='dir', fs_format='ext2', fs_opts=None, arch=None, flavor=None, repo_url=None, static_qemu=None, img_size=None, mount_dir=None, pkg_cache=None, pkgs=None, exclude_pkgs...
[ "def", "bootstrap", "(", "platform", ",", "root", ",", "img_format", "=", "'dir'", ",", "fs_format", "=", "'ext2'", ",", "fs_opts", "=", "None", ",", "arch", "=", "None", ",", "flavor", "=", "None", ",", "repo_url", "=", "None", ",", "static_qemu", "="...
Create an image for a specific platform. Please note that this function *MUST* be run as root, as images that are created make files belonging to root. platform Which platform to use to create the image. Currently supported platforms are rpm, deb and pacman. root Local path to...
[ "Create", "an", "image", "for", "a", "specific", "platform", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L51-L224
train
saltstack/salt
salt/modules/genesis.py
_mkpart
def _mkpart(root, fs_format, fs_opts, mount_dir): ''' Make a partition, and make it bootable .. versionadded:: Beryllium ''' __salt__['partition.mklabel'](root, 'msdos') loop1 = __salt__['cmd.run']('losetup -f') log.debug('First loop device is %s', loop1) __salt__['cmd.run']('losetup {0...
python
def _mkpart(root, fs_format, fs_opts, mount_dir): ''' Make a partition, and make it bootable .. versionadded:: Beryllium ''' __salt__['partition.mklabel'](root, 'msdos') loop1 = __salt__['cmd.run']('losetup -f') log.debug('First loop device is %s', loop1) __salt__['cmd.run']('losetup {0...
[ "def", "_mkpart", "(", "root", ",", "fs_format", ",", "fs_opts", ",", "mount_dir", ")", ":", "__salt__", "[", "'partition.mklabel'", "]", "(", "root", ",", "'msdos'", ")", "loop1", "=", "__salt__", "[", "'cmd.run'", "]", "(", "'losetup -f'", ")", "log", ...
Make a partition, and make it bootable .. versionadded:: Beryllium
[ "Make", "a", "partition", "and", "make", "it", "bootable" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L227-L261
train
saltstack/salt
salt/modules/genesis.py
_mkfs
def _mkfs(root, fs_format, fs_opts=None): ''' Make a filesystem using the appropriate module .. versionadded:: Beryllium ''' if fs_opts is None: fs_opts = {} if fs_format in ('ext2', 'ext3', 'ext4'): __salt__['extfs.mkfs'](root, fs_format, **fs_opts) elif fs_format in ('btr...
python
def _mkfs(root, fs_format, fs_opts=None): ''' Make a filesystem using the appropriate module .. versionadded:: Beryllium ''' if fs_opts is None: fs_opts = {} if fs_format in ('ext2', 'ext3', 'ext4'): __salt__['extfs.mkfs'](root, fs_format, **fs_opts) elif fs_format in ('btr...
[ "def", "_mkfs", "(", "root", ",", "fs_format", ",", "fs_opts", "=", "None", ")", ":", "if", "fs_opts", "is", "None", ":", "fs_opts", "=", "{", "}", "if", "fs_format", "in", "(", "'ext2'", ",", "'ext3'", ",", "'ext4'", ")", ":", "__salt__", "[", "'e...
Make a filesystem using the appropriate module .. versionadded:: Beryllium
[ "Make", "a", "filesystem", "using", "the", "appropriate", "module" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L264-L278
train
saltstack/salt
salt/modules/genesis.py
_populate_cache
def _populate_cache(platform, pkg_cache, mount_dir): ''' If a ``pkg_cache`` directory is specified, then use it to populate the disk image. ''' if not pkg_cache: return if not os.path.isdir(pkg_cache): return if platform == 'pacman': cache_dir = '{0}/var/cache/pacman...
python
def _populate_cache(platform, pkg_cache, mount_dir): ''' If a ``pkg_cache`` directory is specified, then use it to populate the disk image. ''' if not pkg_cache: return if not os.path.isdir(pkg_cache): return if platform == 'pacman': cache_dir = '{0}/var/cache/pacman...
[ "def", "_populate_cache", "(", "platform", ",", "pkg_cache", ",", "mount_dir", ")", ":", "if", "not", "pkg_cache", ":", "return", "if", "not", "os", ".", "path", ".", "isdir", "(", "pkg_cache", ")", ":", "return", "if", "platform", "==", "'pacman'", ":",...
If a ``pkg_cache`` directory is specified, then use it to populate the disk image.
[ "If", "a", "pkg_cache", "directory", "is", "specified", "then", "use", "it", "to", "populate", "the", "disk", "image", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L281-L295
train
saltstack/salt
salt/modules/genesis.py
_bootstrap_yum
def _bootstrap_yum( root, pkg_confs='/etc/yum*', pkgs=None, exclude_pkgs=None, epel_url=EPEL_URL, ): ''' Bootstrap an image using the yum tools root The root of the image to install to. Will be created as a directory if it does not exist. (e.x.: /...
python
def _bootstrap_yum( root, pkg_confs='/etc/yum*', pkgs=None, exclude_pkgs=None, epel_url=EPEL_URL, ): ''' Bootstrap an image using the yum tools root The root of the image to install to. Will be created as a directory if it does not exist. (e.x.: /...
[ "def", "_bootstrap_yum", "(", "root", ",", "pkg_confs", "=", "'/etc/yum*'", ",", "pkgs", "=", "None", ",", "exclude_pkgs", "=", "None", ",", "epel_url", "=", "EPEL_URL", ",", ")", ":", "if", "pkgs", "is", "None", ":", "pkgs", "=", "[", "]", "elif", "...
Bootstrap an image using the yum tools root The root of the image to install to. Will be created as a directory if it does not exist. (e.x.: /root/arch) pkg_confs The location of the conf files to copy into the image, to point yum to the right repos and configuration. pkgs...
[ "Bootstrap", "an", "image", "using", "the", "yum", "tools" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L298-L361
train
saltstack/salt
salt/modules/genesis.py
_bootstrap_deb
def _bootstrap_deb( root, arch, flavor, repo_url=None, static_qemu=None, pkgs=None, exclude_pkgs=None, ): ''' Bootstrap an image using the Debian tools root The root of the image to install to. Will be created as a directory if it ...
python
def _bootstrap_deb( root, arch, flavor, repo_url=None, static_qemu=None, pkgs=None, exclude_pkgs=None, ): ''' Bootstrap an image using the Debian tools root The root of the image to install to. Will be created as a directory if it ...
[ "def", "_bootstrap_deb", "(", "root", ",", "arch", ",", "flavor", ",", "repo_url", "=", "None", ",", "static_qemu", "=", "None", ",", "pkgs", "=", "None", ",", "exclude_pkgs", "=", "None", ",", ")", ":", "if", "repo_url", "is", "None", ":", "repo_url",...
Bootstrap an image using the Debian tools root The root of the image to install to. Will be created as a directory if it does not exist. (e.x.: /root/wheezy) arch Architecture of the target image. (e.x.: amd64) flavor Flavor of Debian to install. (e.x.: wheezy) repo_u...
[ "Bootstrap", "an", "image", "using", "the", "Debian", "tools" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L364-L460
train
saltstack/salt
salt/modules/genesis.py
_bootstrap_pacman
def _bootstrap_pacman( root, pkg_confs='/etc/pacman*', img_format='dir', pkgs=None, exclude_pkgs=None, ): ''' Bootstrap an image using the pacman tools root The root of the image to install to. Will be created as a directory if it does not exist. ...
python
def _bootstrap_pacman( root, pkg_confs='/etc/pacman*', img_format='dir', pkgs=None, exclude_pkgs=None, ): ''' Bootstrap an image using the pacman tools root The root of the image to install to. Will be created as a directory if it does not exist. ...
[ "def", "_bootstrap_pacman", "(", "root", ",", "pkg_confs", "=", "'/etc/pacman*'", ",", "img_format", "=", "'dir'", ",", "pkgs", "=", "None", ",", "exclude_pkgs", "=", "None", ",", ")", ":", "_make_nodes", "(", "root", ")", "if", "pkgs", "is", "None", ":"...
Bootstrap an image using the pacman tools root The root of the image to install to. Will be created as a directory if it does not exist. (e.x.: /root/arch) pkg_confs The location of the conf files to copy into the image, to point pacman to the right repos and configuration. ...
[ "Bootstrap", "an", "image", "using", "the", "pacman", "tools" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L463-L531
train
saltstack/salt
salt/modules/genesis.py
_make_nodes
def _make_nodes(root): ''' Make the minimum number of nodes inside of /dev/. Based on: https://wiki.archlinux.org/index.php/Linux_Containers ''' dirs = ( ('{0}/etc'.format(root), 'root', 'root', '755'), ('{0}/dev'.format(root), 'root', 'root', '755'), ('{0}/proc'.format(root...
python
def _make_nodes(root): ''' Make the minimum number of nodes inside of /dev/. Based on: https://wiki.archlinux.org/index.php/Linux_Containers ''' dirs = ( ('{0}/etc'.format(root), 'root', 'root', '755'), ('{0}/dev'.format(root), 'root', 'root', '755'), ('{0}/proc'.format(root...
[ "def", "_make_nodes", "(", "root", ")", ":", "dirs", "=", "(", "(", "'{0}/etc'", ".", "format", "(", "root", ")", ",", "'root'", ",", "'root'", ",", "'755'", ")", ",", "(", "'{0}/dev'", ".", "format", "(", "root", ")", ",", "'root'", ",", "'root'",...
Make the minimum number of nodes inside of /dev/. Based on: https://wiki.archlinux.org/index.php/Linux_Containers
[ "Make", "the", "minimum", "number", "of", "nodes", "inside", "of", "/", "dev", "/", ".", "Based", "on", ":" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L534-L565
train
saltstack/salt
salt/modules/genesis.py
avail_platforms
def avail_platforms(): ''' Return which platforms are available CLI Example: .. code-block:: bash salt myminion genesis.avail_platforms ''' ret = {} for platform in CMD_MAP: ret[platform] = True for cmd in CMD_MAP[platform]: if not salt.utils.path.which...
python
def avail_platforms(): ''' Return which platforms are available CLI Example: .. code-block:: bash salt myminion genesis.avail_platforms ''' ret = {} for platform in CMD_MAP: ret[platform] = True for cmd in CMD_MAP[platform]: if not salt.utils.path.which...
[ "def", "avail_platforms", "(", ")", ":", "ret", "=", "{", "}", "for", "platform", "in", "CMD_MAP", ":", "ret", "[", "platform", "]", "=", "True", "for", "cmd", "in", "CMD_MAP", "[", "platform", "]", ":", "if", "not", "salt", ".", "utils", ".", "pat...
Return which platforms are available CLI Example: .. code-block:: bash salt myminion genesis.avail_platforms
[ "Return", "which", "platforms", "are", "available" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L568-L584
train
saltstack/salt
salt/modules/genesis.py
pack
def pack(name, root, path=None, pack_format='tar', compress='bzip2'): ''' Pack up a directory structure, into a specific format CLI Examples: .. code-block:: bash salt myminion genesis.pack centos /root/centos salt myminion genesis.pack centos /root/centos pack_format='tar' ''' ...
python
def pack(name, root, path=None, pack_format='tar', compress='bzip2'): ''' Pack up a directory structure, into a specific format CLI Examples: .. code-block:: bash salt myminion genesis.pack centos /root/centos salt myminion genesis.pack centos /root/centos pack_format='tar' ''' ...
[ "def", "pack", "(", "name", ",", "root", ",", "path", "=", "None", ",", "pack_format", "=", "'tar'", ",", "compress", "=", "'bzip2'", ")", ":", "if", "pack_format", "==", "'tar'", ":", "_tar", "(", "name", ",", "root", ",", "path", ",", "compress", ...
Pack up a directory structure, into a specific format CLI Examples: .. code-block:: bash salt myminion genesis.pack centos /root/centos salt myminion genesis.pack centos /root/centos pack_format='tar'
[ "Pack", "up", "a", "directory", "structure", "into", "a", "specific", "format" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L587-L599
train
saltstack/salt
salt/modules/genesis.py
unpack
def unpack(name, dest=None, path=None, pack_format='tar', compress='bz2'): ''' Unpack an image into a directory structure CLI Example: .. code-block:: bash salt myminion genesis.unpack centos /root/centos ''' if pack_format == 'tar': _untar(name, dest, path, compress)
python
def unpack(name, dest=None, path=None, pack_format='tar', compress='bz2'): ''' Unpack an image into a directory structure CLI Example: .. code-block:: bash salt myminion genesis.unpack centos /root/centos ''' if pack_format == 'tar': _untar(name, dest, path, compress)
[ "def", "unpack", "(", "name", ",", "dest", "=", "None", ",", "path", "=", "None", ",", "pack_format", "=", "'tar'", ",", "compress", "=", "'bz2'", ")", ":", "if", "pack_format", "==", "'tar'", ":", "_untar", "(", "name", ",", "dest", ",", "path", "...
Unpack an image into a directory structure CLI Example: .. code-block:: bash salt myminion genesis.unpack centos /root/centos
[ "Unpack", "an", "image", "into", "a", "directory", "structure" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L602-L613
train
saltstack/salt
salt/modules/genesis.py
_tar
def _tar(name, root, path=None, compress='bzip2'): ''' Pack up image in a tar format ''' if path is None: path = os.path.join(salt.syspaths.BASE_FILE_ROOTS_DIR, 'img') if not __salt__['file.directory_exists'](path): try: __salt__['file.mkdir'](path) except Excepti...
python
def _tar(name, root, path=None, compress='bzip2'): ''' Pack up image in a tar format ''' if path is None: path = os.path.join(salt.syspaths.BASE_FILE_ROOTS_DIR, 'img') if not __salt__['file.directory_exists'](path): try: __salt__['file.mkdir'](path) except Excepti...
[ "def", "_tar", "(", "name", ",", "root", ",", "path", "=", "None", ",", "compress", "=", "'bzip2'", ")", ":", "if", "path", "is", "None", ":", "path", "=", "os", ".", "path", ".", "join", "(", "salt", ".", "syspaths", ".", "BASE_FILE_ROOTS_DIR", ",...
Pack up image in a tar format
[ "Pack", "up", "image", "in", "a", "tar", "format" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L616-L636
train
saltstack/salt
salt/modules/genesis.py
_compress
def _compress(compress): ''' Resolve compression flags ''' if compress in ('bz2', 'bzip2', 'j'): compression = 'j' ext = 'bz2' elif compress in ('gz', 'gzip', 'z'): compression = 'z' ext = 'gz' elif compress in ('xz', 'a', 'J'): compression = 'J' e...
python
def _compress(compress): ''' Resolve compression flags ''' if compress in ('bz2', 'bzip2', 'j'): compression = 'j' ext = 'bz2' elif compress in ('gz', 'gzip', 'z'): compression = 'z' ext = 'gz' elif compress in ('xz', 'a', 'J'): compression = 'J' e...
[ "def", "_compress", "(", "compress", ")", ":", "if", "compress", "in", "(", "'bz2'", ",", "'bzip2'", ",", "'j'", ")", ":", "compression", "=", "'j'", "ext", "=", "'bz2'", "elif", "compress", "in", "(", "'gz'", ",", "'gzip'", ",", "'z'", ")", ":", "...
Resolve compression flags
[ "Resolve", "compression", "flags" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L665-L679
train
saltstack/salt
salt/modules/genesis.py
ldd_deps
def ldd_deps(filename, ret=None): ''' Recurse through a set of dependencies reported by ``ldd``, to find associated dependencies. Please note that this does not necessarily resolve all (non-package) dependencies for a file; but it does help. CLI Example: salt myminion genesis.ldd_deps...
python
def ldd_deps(filename, ret=None): ''' Recurse through a set of dependencies reported by ``ldd``, to find associated dependencies. Please note that this does not necessarily resolve all (non-package) dependencies for a file; but it does help. CLI Example: salt myminion genesis.ldd_deps...
[ "def", "ldd_deps", "(", "filename", ",", "ret", "=", "None", ")", ":", "if", "not", "os", ".", "path", ".", "exists", "(", "filename", ")", ":", "filename", "=", "salt", ".", "utils", ".", "path", ".", "which", "(", "filename", ")", "if", "ret", ...
Recurse through a set of dependencies reported by ``ldd``, to find associated dependencies. Please note that this does not necessarily resolve all (non-package) dependencies for a file; but it does help. CLI Example: salt myminion genesis.ldd_deps bash salt myminion genesis.ldd_deps /...
[ "Recurse", "through", "a", "set", "of", "dependencies", "reported", "by", "ldd", "to", "find", "associated", "dependencies", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L682-L724
train
saltstack/salt
salt/modules/genesis.py
mksls
def mksls(fmt, src, dst=None): ''' Convert an installation file/script to an SLS file. Currently supports ``kickstart``, ``preseed``, and ``autoyast``. CLI Examples: salt <minion> genesis.mksls kickstart /path/to/kickstart.cfg salt <minion> genesis.mksls kickstart /path/to/kickstart.cf...
python
def mksls(fmt, src, dst=None): ''' Convert an installation file/script to an SLS file. Currently supports ``kickstart``, ``preseed``, and ``autoyast``. CLI Examples: salt <minion> genesis.mksls kickstart /path/to/kickstart.cfg salt <minion> genesis.mksls kickstart /path/to/kickstart.cf...
[ "def", "mksls", "(", "fmt", ",", "src", ",", "dst", "=", "None", ")", ":", "if", "fmt", "==", "'kickstart'", ":", "return", "salt", ".", "utils", ".", "kickstart", ".", "mksls", "(", "src", ",", "dst", ")", "elif", "fmt", "==", "'preseed'", ":", ...
Convert an installation file/script to an SLS file. Currently supports ``kickstart``, ``preseed``, and ``autoyast``. CLI Examples: salt <minion> genesis.mksls kickstart /path/to/kickstart.cfg salt <minion> genesis.mksls kickstart /path/to/kickstart.cfg /path/to/dest.sls .. versionadded:: ...
[ "Convert", "an", "installation", "file", "/", "script", "to", "an", "SLS", "file", ".", "Currently", "supports", "kickstart", "preseed", "and", "autoyast", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/genesis.py#L727-L744
train
saltstack/salt
salt/modules/win_psget.py
_pshell
def _pshell(cmd, cwd=None, json_depth=2): ''' Execute the desired powershell command and ensure that it returns data in json format and load that into python ''' if 'convertto-json' not in cmd.lower(): cmd = '{0} | ConvertTo-Json -Depth {1}'.format(cmd, json_depth) log.debug('DSC: %s', c...
python
def _pshell(cmd, cwd=None, json_depth=2): ''' Execute the desired powershell command and ensure that it returns data in json format and load that into python ''' if 'convertto-json' not in cmd.lower(): cmd = '{0} | ConvertTo-Json -Depth {1}'.format(cmd, json_depth) log.debug('DSC: %s', c...
[ "def", "_pshell", "(", "cmd", ",", "cwd", "=", "None", ",", "json_depth", "=", "2", ")", ":", "if", "'convertto-json'", "not", "in", "cmd", ".", "lower", "(", ")", ":", "cmd", "=", "'{0} | ConvertTo-Json -Depth {1}'", ".", "format", "(", "cmd", ",", "j...
Execute the desired powershell command and ensure that it returns data in json format and load that into python
[ "Execute", "the", "desired", "powershell", "command", "and", "ensure", "that", "it", "returns", "data", "in", "json", "format", "and", "load", "that", "into", "python" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L53-L75
train
saltstack/salt
salt/modules/win_psget.py
avail_modules
def avail_modules(desc=False): ''' List available modules in registered Powershell module repositories. :param desc: If ``True``, the verbose description will be returned. :type desc: ``bool`` CLI Example: .. code-block:: bash salt 'win01' psget.avail_modules salt 'win01' ps...
python
def avail_modules(desc=False): ''' List available modules in registered Powershell module repositories. :param desc: If ``True``, the verbose description will be returned. :type desc: ``bool`` CLI Example: .. code-block:: bash salt 'win01' psget.avail_modules salt 'win01' ps...
[ "def", "avail_modules", "(", "desc", "=", "False", ")", ":", "cmd", "=", "'Find-Module'", "modules", "=", "_pshell", "(", "cmd", ")", "names", "=", "[", "]", "if", "desc", ":", "names", "=", "{", "}", "for", "module", "in", "modules", ":", "if", "d...
List available modules in registered Powershell module repositories. :param desc: If ``True``, the verbose description will be returned. :type desc: ``bool`` CLI Example: .. code-block:: bash salt 'win01' psget.avail_modules salt 'win01' psget.avail_modules desc=True
[ "List", "available", "modules", "in", "registered", "Powershell", "module", "repositories", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L94-L118
train
saltstack/salt
salt/modules/win_psget.py
list_modules
def list_modules(desc=False): ''' List currently installed PSGet Modules on the system. :param desc: If ``True``, the verbose description will be returned. :type desc: ``bool`` CLI Example: .. code-block:: bash salt 'win01' psget.list_modules salt 'win01' psget.list_modules ...
python
def list_modules(desc=False): ''' List currently installed PSGet Modules on the system. :param desc: If ``True``, the verbose description will be returned. :type desc: ``bool`` CLI Example: .. code-block:: bash salt 'win01' psget.list_modules salt 'win01' psget.list_modules ...
[ "def", "list_modules", "(", "desc", "=", "False", ")", ":", "cmd", "=", "'Get-InstalledModule'", "modules", "=", "_pshell", "(", "cmd", ")", "if", "isinstance", "(", "modules", ",", "dict", ")", ":", "ret", "=", "[", "]", "if", "desc", ":", "modules_re...
List currently installed PSGet Modules on the system. :param desc: If ``True``, the verbose description will be returned. :type desc: ``bool`` CLI Example: .. code-block:: bash salt 'win01' psget.list_modules salt 'win01' psget.list_modules desc=True
[ "List", "currently", "installed", "PSGet", "Modules", "on", "the", "system", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L121-L154
train
saltstack/salt
salt/modules/win_psget.py
install
def install(name, minimum_version=None, required_version=None, scope=None, repository=None): ''' Install a Powershell module from powershell gallery on the system. :param name: Name of a Powershell module :type name: ``str`` :param minimum_version: The maximum version to install, e.g....
python
def install(name, minimum_version=None, required_version=None, scope=None, repository=None): ''' Install a Powershell module from powershell gallery on the system. :param name: Name of a Powershell module :type name: ``str`` :param minimum_version: The maximum version to install, e.g....
[ "def", "install", "(", "name", ",", "minimum_version", "=", "None", ",", "required_version", "=", "None", ",", "scope", "=", "None", ",", "repository", "=", "None", ")", ":", "# Putting quotes around the parameter protects against command injection", "flags", "=", "...
Install a Powershell module from powershell gallery on the system. :param name: Name of a Powershell module :type name: ``str`` :param minimum_version: The maximum version to install, e.g. 1.23.2 :type minimum_version: ``str`` :param required_version: Install a specific version :type requi...
[ "Install", "a", "Powershell", "module", "from", "powershell", "gallery", "on", "the", "system", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L157-L199
train
saltstack/salt
salt/modules/win_psget.py
update
def update(name, maximum_version=None, required_version=None): ''' Update a PowerShell module to a specific version, or the newest :param name: Name of a Powershell module :type name: ``str`` :param maximum_version: The maximum version to install, e.g. 1.23.2 :type maximum_version: ``str`` ...
python
def update(name, maximum_version=None, required_version=None): ''' Update a PowerShell module to a specific version, or the newest :param name: Name of a Powershell module :type name: ``str`` :param maximum_version: The maximum version to install, e.g. 1.23.2 :type maximum_version: ``str`` ...
[ "def", "update", "(", "name", ",", "maximum_version", "=", "None", ",", "required_version", "=", "None", ")", ":", "# Putting quotes around the parameter protects against command injection", "flags", "=", "[", "(", "'Name'", ",", "name", ")", "]", "if", "maximum_ver...
Update a PowerShell module to a specific version, or the newest :param name: Name of a Powershell module :type name: ``str`` :param maximum_version: The maximum version to install, e.g. 1.23.2 :type maximum_version: ``str`` :param required_version: Install a specific version :type required...
[ "Update", "a", "PowerShell", "module", "to", "a", "specific", "version", "or", "the", "newest" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L202-L234
train
saltstack/salt
salt/modules/win_psget.py
remove
def remove(name): ''' Remove a Powershell DSC module from the system. :param name: Name of a Powershell DSC module :type name: ``str`` CLI Example: .. code-block:: bash salt 'win01' psget.remove PowerPlan ''' # Putting quotes around the parameter protects against command i...
python
def remove(name): ''' Remove a Powershell DSC module from the system. :param name: Name of a Powershell DSC module :type name: ``str`` CLI Example: .. code-block:: bash salt 'win01' psget.remove PowerPlan ''' # Putting quotes around the parameter protects against command i...
[ "def", "remove", "(", "name", ")", ":", "# Putting quotes around the parameter protects against command injection", "cmd", "=", "'Uninstall-Module \"{0}\"'", ".", "format", "(", "name", ")", "no_ret", "=", "_pshell", "(", "cmd", ")", "return", "name", "not", "in", "...
Remove a Powershell DSC module from the system. :param name: Name of a Powershell DSC module :type name: ``str`` CLI Example: .. code-block:: bash salt 'win01' psget.remove PowerPlan
[ "Remove", "a", "Powershell", "DSC", "module", "from", "the", "system", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L237-L253
train
saltstack/salt
salt/modules/win_psget.py
register_repository
def register_repository(name, location, installation_policy=None): ''' Register a PSGet repository on the local machine :param name: The name for the repository :type name: ``str`` :param location: The URI for the repository :type location: ``str`` :param installation_policy: The instal...
python
def register_repository(name, location, installation_policy=None): ''' Register a PSGet repository on the local machine :param name: The name for the repository :type name: ``str`` :param location: The URI for the repository :type location: ``str`` :param installation_policy: The instal...
[ "def", "register_repository", "(", "name", ",", "location", ",", "installation_policy", "=", "None", ")", ":", "# Putting quotes around the parameter protects against command injection", "flags", "=", "[", "(", "'Name'", ",", "name", ")", "]", "flags", ".", "append", ...
Register a PSGet repository on the local machine :param name: The name for the repository :type name: ``str`` :param location: The URI for the repository :type location: ``str`` :param installation_policy: The installation policy for packages, e.g. Trusted, Untrusted :type installa...
[ "Register", "a", "PSGet", "repository", "on", "the", "local", "machine" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L256-L288
train
saltstack/salt
salt/modules/win_psget.py
get_repository
def get_repository(name): ''' Get the details of a local PSGet repository :param name: Name of the repository :type name: ``str`` CLI Example: .. code-block:: bash salt 'win01' psget.get_repository MyRepo ''' # Putting quotes around the parameter protects against command i...
python
def get_repository(name): ''' Get the details of a local PSGet repository :param name: Name of the repository :type name: ``str`` CLI Example: .. code-block:: bash salt 'win01' psget.get_repository MyRepo ''' # Putting quotes around the parameter protects against command i...
[ "def", "get_repository", "(", "name", ")", ":", "# Putting quotes around the parameter protects against command injection", "cmd", "=", "'Get-PSRepository \"{0}\"'", ".", "format", "(", "name", ")", "no_ret", "=", "_pshell", "(", "cmd", ")", "return", "name", "not", "...
Get the details of a local PSGet repository :param name: Name of the repository :type name: ``str`` CLI Example: .. code-block:: bash salt 'win01' psget.get_repository MyRepo
[ "Get", "the", "details", "of", "a", "local", "PSGet", "repository" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_psget.py#L291-L307
train
saltstack/salt
salt/states/lxc.py
present
def present(name, running=None, clone_from=None, snapshot=False, profile=None, network_profile=None, template=None, options=None, image=None, config=None, fstype=None, size=None, ...
python
def present(name, running=None, clone_from=None, snapshot=False, profile=None, network_profile=None, template=None, options=None, image=None, config=None, fstype=None, size=None, ...
[ "def", "present", "(", "name", ",", "running", "=", "None", ",", "clone_from", "=", "None", ",", "snapshot", "=", "False", ",", "profile", "=", "None", ",", "network_profile", "=", "None", ",", "template", "=", "None", ",", "options", "=", "None", ",",...
.. versionchanged:: 2015.8.0 The :mod:`lxc.created <salt.states.lxc.created>` state has been renamed to ``lxc.present``, and the :mod:`lxc.cloned <salt.states.lxc.cloned>` state has been merged into this state. Create the named container if it does not exist name The name of t...
[ "..", "versionchanged", "::", "2015", ".", "8", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/lxc.py#L15-L330
train
saltstack/salt
salt/states/lxc.py
absent
def absent(name, stop=False, path=None): ''' Ensure a container is not present, destroying it if present name Name of the container to destroy stop stop before destroying default: false .. versionadded:: 2015.5.2 path path to the container parent d...
python
def absent(name, stop=False, path=None): ''' Ensure a container is not present, destroying it if present name Name of the container to destroy stop stop before destroying default: false .. versionadded:: 2015.5.2 path path to the container parent d...
[ "def", "absent", "(", "name", ",", "stop", "=", "False", ",", "path", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "True", ",", "'comment'", ":", "'Container \\'{0}\\' does not ex...
Ensure a container is not present, destroying it if present name Name of the container to destroy stop stop before destroying default: false .. versionadded:: 2015.5.2 path path to the container parent default: /var/lib/lxc (system default) .. ver...
[ "Ensure", "a", "container", "is", "not", "present", "destroying", "it", "if", "present" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/lxc.py#L333-L379
train
saltstack/salt
salt/states/lxc.py
running
def running(name, restart=False, path=None): ''' .. versionchanged:: 2015.5.0 The :mod:`lxc.started <salt.states.lxc.started>` state has been renamed to ``lxc.running`` Ensure that a container is running .. note:: This state does not enforce the existence of the named containe...
python
def running(name, restart=False, path=None): ''' .. versionchanged:: 2015.5.0 The :mod:`lxc.started <salt.states.lxc.started>` state has been renamed to ``lxc.running`` Ensure that a container is running .. note:: This state does not enforce the existence of the named containe...
[ "def", "running", "(", "name", ",", "restart", "=", "False", ",", "path", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "True", ",", "'comment'", ":", "'Container \\'{0}\\' is already running'", ".", "format", "(", ...
.. versionchanged:: 2015.5.0 The :mod:`lxc.started <salt.states.lxc.started>` state has been renamed to ``lxc.running`` Ensure that a container is running .. note:: This state does not enforce the existence of the named container, it just starts the container if it is not runn...
[ "..", "versionchanged", "::", "2015", ".", "5", ".", "0", "The", ":", "mod", ":", "lxc", ".", "started", "<salt", ".", "states", ".", "lxc", ".", "started", ">", "state", "has", "been", "renamed", "to", "lxc", ".", "running" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/lxc.py#L383-L480
train
saltstack/salt
salt/states/lxc.py
stopped
def stopped(name, kill=False, path=None): ''' Ensure that a container is stopped .. note:: This state does not enforce the existence of the named container, it just stops the container if it running or frozen. To ensure that the named container exists, use :mod:`lxc.present ...
python
def stopped(name, kill=False, path=None): ''' Ensure that a container is stopped .. note:: This state does not enforce the existence of the named container, it just stops the container if it running or frozen. To ensure that the named container exists, use :mod:`lxc.present ...
[ "def", "stopped", "(", "name", ",", "kill", "=", "False", ",", "path", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "True", ",", "'comment'", ":", "'Container \\'{0}\\' is already stopped'", ".", "format", "(", "na...
Ensure that a container is stopped .. note:: This state does not enforce the existence of the named container, it just stops the container if it running or frozen. To ensure that the named container exists, use :mod:`lxc.present <salt.states.lxc.present>`, or use the :mod:`lxc.abse...
[ "Ensure", "that", "a", "container", "is", "stopped" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/lxc.py#L570-L646
train
saltstack/salt
salt/states/lxc.py
edited_conf
def edited_conf(name, lxc_conf=None, lxc_conf_unset=None): ''' .. warning:: This state is unsuitable for setting parameters that appear more than once in an LXC config file, or parameters which must appear in a certain order (such as when configuring more than one network interf...
python
def edited_conf(name, lxc_conf=None, lxc_conf_unset=None): ''' .. warning:: This state is unsuitable for setting parameters that appear more than once in an LXC config file, or parameters which must appear in a certain order (such as when configuring more than one network interf...
[ "def", "edited_conf", "(", "name", ",", "lxc_conf", "=", "None", ",", "lxc_conf_unset", "=", "None", ")", ":", "if", "__opts__", "[", "'test'", "]", ":", "return", "{", "'name'", ":", "name", ",", "'comment'", ":", "'{0} lxc.conf will be edited'", ".", "fo...
.. warning:: This state is unsuitable for setting parameters that appear more than once in an LXC config file, or parameters which must appear in a certain order (such as when configuring more than one network interface). `Issue #35523`_ was opened to track the addition of a su...
[ "..", "warning", "::" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/lxc.py#L676-L725
train
saltstack/salt
salt/runners/thin.py
generate
def generate(extra_mods='', overwrite=False, so_mods='', python2_bin='python2', python3_bin='python3', absonly=True, compress='gzip'): ''' Generate the salt-thin tarball and print the location of the tarball Optional additional mods to include (e.g. mako) can be supplied as a comma...
python
def generate(extra_mods='', overwrite=False, so_mods='', python2_bin='python2', python3_bin='python3', absonly=True, compress='gzip'): ''' Generate the salt-thin tarball and print the location of the tarball Optional additional mods to include (e.g. mako) can be supplied as a comma...
[ "def", "generate", "(", "extra_mods", "=", "''", ",", "overwrite", "=", "False", ",", "so_mods", "=", "''", ",", "python2_bin", "=", "'python2'", ",", "python3_bin", "=", "'python3'", ",", "absonly", "=", "True", ",", "compress", "=", "'gzip'", ")", ":",...
Generate the salt-thin tarball and print the location of the tarball Optional additional mods to include (e.g. mako) can be supplied as a comma delimited string. Permits forcing an overwrite of the output file as well. CLI Example: .. code-block:: bash salt-run thin.generate salt-run...
[ "Generate", "the", "salt", "-", "thin", "tarball", "and", "print", "the", "location", "of", "the", "tarball", "Optional", "additional", "mods", "to", "include", "(", "e", ".", "g", ".", "mako", ")", "can", "be", "supplied", "as", "a", "comma", "delimited...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/runners/thin.py#L17-L45
train
saltstack/salt
salt/runners/thin.py
generate_min
def generate_min(extra_mods='', overwrite=False, so_mods='', python2_bin='python2', python3_bin='python3'): ''' Generate the salt-thin tarball and print the location of the tarball Optional additional mods to include (e.g. mako) can be supplied as a comma delimited string. Permits forcing ...
python
def generate_min(extra_mods='', overwrite=False, so_mods='', python2_bin='python2', python3_bin='python3'): ''' Generate the salt-thin tarball and print the location of the tarball Optional additional mods to include (e.g. mako) can be supplied as a comma delimited string. Permits forcing ...
[ "def", "generate_min", "(", "extra_mods", "=", "''", ",", "overwrite", "=", "False", ",", "so_mods", "=", "''", ",", "python2_bin", "=", "'python2'", ",", "python3_bin", "=", "'python3'", ")", ":", "conf_mods", "=", "__opts__", ".", "get", "(", "'min_extra...
Generate the salt-thin tarball and print the location of the tarball Optional additional mods to include (e.g. mako) can be supplied as a comma delimited string. Permits forcing an overwrite of the output file as well. CLI Example: .. code-block:: bash salt-run thin.generate_min
[ "Generate", "the", "salt", "-", "thin", "tarball", "and", "print", "the", "location", "of", "the", "tarball", "Optional", "additional", "mods", "to", "include", "(", "e", ".", "g", ".", "mako", ")", "can", "be", "supplied", "as", "a", "comma", "delimited...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/runners/thin.py#L48-L70
train
saltstack/salt
salt/auth/rest.py
auth
def auth(username, password): ''' REST authentication ''' url = rest_auth_setup() data = {'username': username, 'password': password} # Post to the API endpoint. If 200 is returned then the result will be the ACLs # for this user result = salt.utils.http.query(url, method='POST', data...
python
def auth(username, password): ''' REST authentication ''' url = rest_auth_setup() data = {'username': username, 'password': password} # Post to the API endpoint. If 200 is returned then the result will be the ACLs # for this user result = salt.utils.http.query(url, method='POST', data...
[ "def", "auth", "(", "username", ",", "password", ")", ":", "url", "=", "rest_auth_setup", "(", ")", "data", "=", "{", "'username'", ":", "username", ",", "'password'", ":", "password", "}", "# Post to the API endpoint. If 200 is returned then the result will be the AC...
REST authentication
[ "REST", "authentication" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/auth/rest.py#L50-L70
train
saltstack/salt
salt/states/github.py
present
def present(name, profile="github", **kwargs): ''' Ensure a user is present .. code-block:: yaml ensure user test is present in github: github.present: - name: 'gitexample' The following parameters are required: name This is the github handle of the us...
python
def present(name, profile="github", **kwargs): ''' Ensure a user is present .. code-block:: yaml ensure user test is present in github: github.present: - name: 'gitexample' The following parameters are required: name This is the github handle of the us...
[ "def", "present", "(", "name", ",", "profile", "=", "\"github\"", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "target", ...
Ensure a user is present .. code-block:: yaml ensure user test is present in github: github.present: - name: 'gitexample' The following parameters are required: name This is the github handle of the user in the organization
[ "Ensure", "a", "user", "is", "present" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/github.py#L40-L93
train
saltstack/salt
salt/states/github.py
absent
def absent(name, profile="github", **kwargs): ''' Ensure a github user is absent .. code-block:: yaml ensure user test is absent in github: github.absent: - name: 'Example TestUser1' - email: example@domain.com - username: 'gitexample' ...
python
def absent(name, profile="github", **kwargs): ''' Ensure a github user is absent .. code-block:: yaml ensure user test is absent in github: github.absent: - name: 'Example TestUser1' - email: example@domain.com - username: 'gitexample' ...
[ "def", "absent", "(", "name", ",", "profile", "=", "\"github\"", ",", "*", "*", "kwargs", ")", ":", "email", "=", "kwargs", ".", "get", "(", "'email'", ")", "full_name", "=", "kwargs", ".", "get", "(", "'fullname'", ")", "ret", "=", "{", "'name'", ...
Ensure a github user is absent .. code-block:: yaml ensure user test is absent in github: github.absent: - name: 'Example TestUser1' - email: example@domain.com - username: 'gitexample' The following parameters are required: name ...
[ "Ensure", "a", "github", "user", "is", "absent" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/github.py#L96-L151
train
saltstack/salt
salt/states/github.py
team_present
def team_present( name, description=None, repo_names=None, privacy='secret', permission='pull', members=None, enforce_mfa=False, no_mfa_grace_seconds=0, profile="github", **kwargs): ''' Ensure a team is present name Thi...
python
def team_present( name, description=None, repo_names=None, privacy='secret', permission='pull', members=None, enforce_mfa=False, no_mfa_grace_seconds=0, profile="github", **kwargs): ''' Ensure a team is present name Thi...
[ "def", "team_present", "(", "name", ",", "description", "=", "None", ",", "repo_names", "=", "None", ",", "privacy", "=", "'secret'", ",", "permission", "=", "'pull'", ",", "members", "=", "None", ",", "enforce_mfa", "=", "False", ",", "no_mfa_grace_seconds"...
Ensure a team is present name This is the name of the team in the organization. description The description of the team. repo_names The names of repositories to add the team to. privacy The level of privacy for the team, can be 'secret' or 'closed'. Defaults t...
[ "Ensure", "a", "team", "is", "present" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/github.py#L154-L413
train
saltstack/salt
salt/states/github.py
team_absent
def team_absent(name, profile="github", **kwargs): ''' Ensure a team is absent. Example: .. code-block:: yaml ensure team test is present in github: github.team_absent: - name: 'test' The following parameters are required: name This is the name o...
python
def team_absent(name, profile="github", **kwargs): ''' Ensure a team is absent. Example: .. code-block:: yaml ensure team test is present in github: github.team_absent: - name: 'test' The following parameters are required: name This is the name o...
[ "def", "team_absent", "(", "name", ",", "profile", "=", "\"github\"", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "targe...
Ensure a team is absent. Example: .. code-block:: yaml ensure team test is present in github: github.team_absent: - name: 'test' The following parameters are required: name This is the name of the team in the organization. .. versionadded:: 2016.11....
[ "Ensure", "a", "team", "is", "absent", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/github.py#L424-L473
train
saltstack/salt
salt/states/github.py
repo_present
def repo_present( name, description=None, homepage=None, private=None, has_issues=None, has_wiki=None, has_downloads=None, auto_init=False, gitignore_template=None, license_template=None, teams=None, profile="github", ...
python
def repo_present( name, description=None, homepage=None, private=None, has_issues=None, has_wiki=None, has_downloads=None, auto_init=False, gitignore_template=None, license_template=None, teams=None, profile="github", ...
[ "def", "repo_present", "(", "name", ",", "description", "=", "None", ",", "homepage", "=", "None", ",", "private", "=", "None", ",", "has_issues", "=", "None", ",", "has_wiki", "=", "None", ",", "has_downloads", "=", "None", ",", "auto_init", "=", "False...
Ensure a repository is present name This is the name of the repository. description The description of the repository. homepage The URL with more information about the repository. private The visiblity of the repository. Note that private repositories require ...
[ "Ensure", "a", "repository", "is", "present" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/github.py#L476-L728
train
saltstack/salt
salt/roster/dir.py
targets
def targets(tgt, tgt_type='glob', **kwargs): ''' Return the targets from the directory of flat yaml files, checks opts for location. ''' roster_dir = __opts__.get('roster_dir', '/etc/salt/roster.d') # Match the targets before rendering to avoid opening files unnecessarily. raw = dict.fromkey...
python
def targets(tgt, tgt_type='glob', **kwargs): ''' Return the targets from the directory of flat yaml files, checks opts for location. ''' roster_dir = __opts__.get('roster_dir', '/etc/salt/roster.d') # Match the targets before rendering to avoid opening files unnecessarily. raw = dict.fromkey...
[ "def", "targets", "(", "tgt", ",", "tgt_type", "=", "'glob'", ",", "*", "*", "kwargs", ")", ":", "roster_dir", "=", "__opts__", ".", "get", "(", "'roster_dir'", ",", "'/etc/salt/roster.d'", ")", "# Match the targets before rendering to avoid opening files unnecessaril...
Return the targets from the directory of flat yaml files, checks opts for location.
[ "Return", "the", "targets", "from", "the", "directory", "of", "flat", "yaml", "files", "checks", "opts", "for", "location", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/roster/dir.py#L63-L79
train
saltstack/salt
salt/roster/dir.py
_render
def _render(roster_file, **kwargs): """ Render the roster file """ renderers = salt.loader.render(__opts__, {}) domain = __opts__.get('roster_domain', '') try: result = salt.template.compile_template(roster_file, renderers, ...
python
def _render(roster_file, **kwargs): """ Render the roster file """ renderers = salt.loader.render(__opts__, {}) domain = __opts__.get('roster_domain', '') try: result = salt.template.compile_template(roster_file, renderers, ...
[ "def", "_render", "(", "roster_file", ",", "*", "*", "kwargs", ")", ":", "renderers", "=", "salt", ".", "loader", ".", "render", "(", "__opts__", ",", "{", "}", ")", "domain", "=", "__opts__", ".", "get", "(", "'roster_domain'", ",", "''", ")", "try"...
Render the roster file
[ "Render", "the", "roster", "file" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/roster/dir.py#L82-L100
train
saltstack/salt
salt/modules/disk.py
_parse_numbers
def _parse_numbers(text): ''' Convert a string to a number, allowing for a K|M|G|T postfix, 32.8K. Returns a decimal number if the string is a real number, or the string unchanged otherwise. ''' if text.isdigit(): return decimal.Decimal(text) try: postPrefixes = {'K': '10E3'...
python
def _parse_numbers(text): ''' Convert a string to a number, allowing for a K|M|G|T postfix, 32.8K. Returns a decimal number if the string is a real number, or the string unchanged otherwise. ''' if text.isdigit(): return decimal.Decimal(text) try: postPrefixes = {'K': '10E3'...
[ "def", "_parse_numbers", "(", "text", ")", ":", "if", "text", ".", "isdigit", "(", ")", ":", "return", "decimal", ".", "Decimal", "(", "text", ")", "try", ":", "postPrefixes", "=", "{", "'K'", ":", "'10E3'", ",", "'M'", ":", "'10E6'", ",", "'G'", "...
Convert a string to a number, allowing for a K|M|G|T postfix, 32.8K. Returns a decimal number if the string is a real number, or the string unchanged otherwise.
[ "Convert", "a", "string", "to", "a", "number", "allowing", "for", "a", "K|M|G|T", "postfix", "32", ".", "8K", ".", "Returns", "a", "decimal", "number", "if", "the", "string", "is", "a", "real", "number", "or", "the", "string", "unchanged", "otherwise", "...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/disk.py#L45-L63
train
saltstack/salt
salt/modules/disk.py
_clean_flags
def _clean_flags(args, caller): ''' Sanitize flags passed into df ''' flags = '' if args is None: return flags allowed = ('a', 'B', 'h', 'H', 'i', 'k', 'l', 'P', 't', 'T', 'x', 'v') for flag in args: if flag in allowed: flags += flag else: rais...
python
def _clean_flags(args, caller): ''' Sanitize flags passed into df ''' flags = '' if args is None: return flags allowed = ('a', 'B', 'h', 'H', 'i', 'k', 'l', 'P', 't', 'T', 'x', 'v') for flag in args: if flag in allowed: flags += flag else: rais...
[ "def", "_clean_flags", "(", "args", ",", "caller", ")", ":", "flags", "=", "''", "if", "args", "is", "None", ":", "return", "flags", "allowed", "=", "(", "'a'", ",", "'B'", ",", "'h'", ",", "'H'", ",", "'i'", ",", "'k'", ",", "'l'", ",", "'P'", ...
Sanitize flags passed into df
[ "Sanitize", "flags", "passed", "into", "df" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/disk.py#L66-L81
train
saltstack/salt
salt/modules/disk.py
usage
def usage(args=None): ''' Return usage information for volumes mounted on this minion .. versionchanged:: 2019.2.0 Default for SunOS changed to 1 kilobyte blocks CLI Example: .. code-block:: bash salt '*' disk.usage ''' flags = _clean_flags(args, 'disk.usage') if not...
python
def usage(args=None): ''' Return usage information for volumes mounted on this minion .. versionchanged:: 2019.2.0 Default for SunOS changed to 1 kilobyte blocks CLI Example: .. code-block:: bash salt '*' disk.usage ''' flags = _clean_flags(args, 'disk.usage') if not...
[ "def", "usage", "(", "args", "=", "None", ")", ":", "flags", "=", "_clean_flags", "(", "args", ",", "'disk.usage'", ")", "if", "not", "os", ".", "path", ".", "isfile", "(", "'/etc/mtab'", ")", "and", "__grains__", "[", "'kernel'", "]", "==", "'Linux'",...
Return usage information for volumes mounted on this minion .. versionchanged:: 2019.2.0 Default for SunOS changed to 1 kilobyte blocks CLI Example: .. code-block:: bash salt '*' disk.usage
[ "Return", "usage", "information", "for", "volumes", "mounted", "on", "this", "minion" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/disk.py#L84-L160
train
saltstack/salt
salt/modules/disk.py
inodeusage
def inodeusage(args=None): ''' Return inode usage information for volumes mounted on this minion CLI Example: .. code-block:: bash salt '*' disk.inodeusage ''' flags = _clean_flags(args, 'disk.inodeusage') if __grains__['kernel'] == 'AIX': cmd = 'df -i' else: c...
python
def inodeusage(args=None): ''' Return inode usage information for volumes mounted on this minion CLI Example: .. code-block:: bash salt '*' disk.inodeusage ''' flags = _clean_flags(args, 'disk.inodeusage') if __grains__['kernel'] == 'AIX': cmd = 'df -i' else: c...
[ "def", "inodeusage", "(", "args", "=", "None", ")", ":", "flags", "=", "_clean_flags", "(", "args", ",", "'disk.inodeusage'", ")", "if", "__grains__", "[", "'kernel'", "]", "==", "'AIX'", ":", "cmd", "=", "'df -i'", "else", ":", "cmd", "=", "'df -iP'", ...
Return inode usage information for volumes mounted on this minion CLI Example: .. code-block:: bash salt '*' disk.inodeusage
[ "Return", "inode", "usage", "information", "for", "volumes", "mounted", "on", "this", "minion" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/disk.py#L163-L218
train
saltstack/salt
salt/modules/disk.py
percent
def percent(args=None): ''' Return partition information for volumes mounted on this minion CLI Example: .. code-block:: bash salt '*' disk.percent /var ''' if __grains__['kernel'] == 'Linux': cmd = 'df -P' elif __grains__['kernel'] == 'OpenBSD' or __grains__['kernel'] == ...
python
def percent(args=None): ''' Return partition information for volumes mounted on this minion CLI Example: .. code-block:: bash salt '*' disk.percent /var ''' if __grains__['kernel'] == 'Linux': cmd = 'df -P' elif __grains__['kernel'] == 'OpenBSD' or __grains__['kernel'] == ...
[ "def", "percent", "(", "args", "=", "None", ")", ":", "if", "__grains__", "[", "'kernel'", "]", "==", "'Linux'", ":", "cmd", "=", "'df -P'", "elif", "__grains__", "[", "'kernel'", "]", "==", "'OpenBSD'", "or", "__grains__", "[", "'kernel'", "]", "==", ...
Return partition information for volumes mounted on this minion CLI Example: .. code-block:: bash salt '*' disk.percent /var
[ "Return", "partition", "information", "for", "volumes", "mounted", "on", "this", "minion" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/disk.py#L221-L267
train