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/modules/snapper.py
diff_jid
def diff_jid(jid, config='root'): ''' Returns the changes applied by a `jid` jid The job id to lookup config Configuration name. CLI Example: .. code-block:: bash salt '*' snapper.diff_jid jid=20160607130930720112 ''' pre_snapshot, post_snapshot = _get_jid_sn...
python
def diff_jid(jid, config='root'): ''' Returns the changes applied by a `jid` jid The job id to lookup config Configuration name. CLI Example: .. code-block:: bash salt '*' snapper.diff_jid jid=20160607130930720112 ''' pre_snapshot, post_snapshot = _get_jid_sn...
[ "def", "diff_jid", "(", "jid", ",", "config", "=", "'root'", ")", ":", "pre_snapshot", ",", "post_snapshot", "=", "_get_jid_snapshots", "(", "jid", ",", "config", "=", "config", ")", "return", "diff", "(", "config", ",", "num_pre", "=", "pre_snapshot", ","...
Returns the changes applied by a `jid` jid The job id to lookup config Configuration name. CLI Example: .. code-block:: bash salt '*' snapper.diff_jid jid=20160607130930720112
[ "Returns", "the", "changes", "applied", "by", "a", "jid" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/snapper.py#L855-L872
train
saltstack/salt
salt/modules/snapper.py
create_baseline
def create_baseline(tag="baseline", config='root'): ''' Creates a snapshot marked as baseline tag Tag name for the baseline config Configuration name. CLI Example: .. code-block:: bash salt '*' snapper.create_baseline salt '*' snapper.create_baseline my_custo...
python
def create_baseline(tag="baseline", config='root'): ''' Creates a snapshot marked as baseline tag Tag name for the baseline config Configuration name. CLI Example: .. code-block:: bash salt '*' snapper.create_baseline salt '*' snapper.create_baseline my_custo...
[ "def", "create_baseline", "(", "tag", "=", "\"baseline\"", ",", "config", "=", "'root'", ")", ":", "return", "__salt__", "[", "'snapper.create_snapshot'", "]", "(", "config", "=", "config", ",", "snapshot_type", "=", "'single'", ",", "description", "=", "\"bas...
Creates a snapshot marked as baseline tag Tag name for the baseline config Configuration name. CLI Example: .. code-block:: bash salt '*' snapper.create_baseline salt '*' snapper.create_baseline my_custom_baseline
[ "Creates", "a", "snapshot", "marked", "as", "baseline" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/snapper.py#L875-L896
train
saltstack/salt
salt/states/environ.py
setenv
def setenv(name, value, false_unsets=False, clear_all=False, update_minion=False, permanent=False): ''' Set the salt process environment variables. name The environment key to set. Must be a string. value Either a string or dict. W...
python
def setenv(name, value, false_unsets=False, clear_all=False, update_minion=False, permanent=False): ''' Set the salt process environment variables. name The environment key to set. Must be a string. value Either a string or dict. W...
[ "def", "setenv", "(", "name", ",", "value", ",", "false_unsets", "=", "False", ",", "clear_all", "=", "False", ",", "update_minion", "=", "False", ",", "permanent", "=", "False", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", ...
Set the salt process environment variables. name The environment key to set. Must be a string. value Either a string or dict. When string, it will be the value set for the environment key of 'name' above. When a dict, each key/value pair represents an environment variab...
[ "Set", "the", "salt", "process", "environment", "variables", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/environ.py#L34-L184
train
saltstack/salt
salt/modules/znc.py
_makepass
def _makepass(password, hasher='sha256'): ''' Create a znc compatible hashed password ''' # Setup the hasher if hasher == 'sha256': h = hashlib.sha256(password) elif hasher == 'md5': h = hashlib.md5(password) else: return NotImplemented c = "abcdefghijklmnopqrstu...
python
def _makepass(password, hasher='sha256'): ''' Create a znc compatible hashed password ''' # Setup the hasher if hasher == 'sha256': h = hashlib.sha256(password) elif hasher == 'md5': h = hashlib.md5(password) else: return NotImplemented c = "abcdefghijklmnopqrstu...
[ "def", "_makepass", "(", "password", ",", "hasher", "=", "'sha256'", ")", ":", "# Setup the hasher", "if", "hasher", "==", "'sha256'", ":", "h", "=", "hashlib", ".", "sha256", "(", "password", ")", "elif", "hasher", "==", "'md5'", ":", "h", "=", "hashlib...
Create a znc compatible hashed password
[ "Create", "a", "znc", "compatible", "hashed", "password" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/znc.py#L34-L58
train
saltstack/salt
salt/modules/znc.py
buildmod
def buildmod(*modules): ''' Build module using znc-buildmod CLI Example: .. code-block:: bash salt '*' znc.buildmod module.cpp [...] ''' # Check if module files are missing missing = [module for module in modules if not os.path.exists(module)] if missing: return 'Error...
python
def buildmod(*modules): ''' Build module using znc-buildmod CLI Example: .. code-block:: bash salt '*' znc.buildmod module.cpp [...] ''' # Check if module files are missing missing = [module for module in modules if not os.path.exists(module)] if missing: return 'Error...
[ "def", "buildmod", "(", "*", "modules", ")", ":", "# Check if module files are missing", "missing", "=", "[", "module", "for", "module", "in", "modules", "if", "not", "os", ".", "path", ".", "exists", "(", "module", ")", "]", "if", "missing", ":", "return"...
Build module using znc-buildmod CLI Example: .. code-block:: bash salt '*' znc.buildmod module.cpp [...]
[ "Build", "module", "using", "znc", "-", "buildmod" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/znc.py#L61-L79
train
saltstack/salt
salt/modules/znc.py
version
def version(): ''' Return server version from znc --version CLI Example: .. code-block:: bash salt '*' znc.version ''' cmd = ['znc', '--version'] out = __salt__['cmd.run'](cmd, python_shell=False).splitlines() ret = out[0].split(' - ') return ret[0]
python
def version(): ''' Return server version from znc --version CLI Example: .. code-block:: bash salt '*' znc.version ''' cmd = ['znc', '--version'] out = __salt__['cmd.run'](cmd, python_shell=False).splitlines() ret = out[0].split(' - ') return ret[0]
[ "def", "version", "(", ")", ":", "cmd", "=", "[", "'znc'", ",", "'--version'", "]", "out", "=", "__salt__", "[", "'cmd.run'", "]", "(", "cmd", ",", "python_shell", "=", "False", ")", ".", "splitlines", "(", ")", "ret", "=", "out", "[", "0", "]", ...
Return server version from znc --version CLI Example: .. code-block:: bash salt '*' znc.version
[ "Return", "server", "version", "from", "znc", "--", "version" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/znc.py#L108-L121
train
saltstack/salt
salt/returners/odbc.py
_get_conn
def _get_conn(ret=None): ''' Return a MSSQL connection. ''' _options = _get_options(ret) dsn = _options.get('dsn') user = _options.get('user') passwd = _options.get('passwd') return pyodbc.connect('DSN={0};UID={1};PWD={2}'.format( dsn, user, passwd))
python
def _get_conn(ret=None): ''' Return a MSSQL connection. ''' _options = _get_options(ret) dsn = _options.get('dsn') user = _options.get('user') passwd = _options.get('passwd') return pyodbc.connect('DSN={0};UID={1};PWD={2}'.format( dsn, user, passwd))
[ "def", "_get_conn", "(", "ret", "=", "None", ")", ":", "_options", "=", "_get_options", "(", "ret", ")", "dsn", "=", "_options", ".", "get", "(", "'dsn'", ")", "user", "=", "_options", ".", "get", "(", "'user'", ")", "passwd", "=", "_options", ".", ...
Return a MSSQL connection.
[ "Return", "a", "MSSQL", "connection", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/odbc.py#L169-L181
train
saltstack/salt
salt/returners/odbc.py
returner
def returner(ret): ''' Return data to an odbc server ''' conn = _get_conn(ret) cur = conn.cursor() sql = '''INSERT INTO salt_returns (fun, jid, retval, id, success, full_ret) VALUES (?, ?, ?, ?, ?, ?)''' cur.execute( sql, ( ret['fun'], ...
python
def returner(ret): ''' Return data to an odbc server ''' conn = _get_conn(ret) cur = conn.cursor() sql = '''INSERT INTO salt_returns (fun, jid, retval, id, success, full_ret) VALUES (?, ?, ?, ?, ?, ?)''' cur.execute( sql, ( ret['fun'], ...
[ "def", "returner", "(", "ret", ")", ":", "conn", "=", "_get_conn", "(", "ret", ")", "cur", "=", "conn", ".", "cursor", "(", ")", "sql", "=", "'''INSERT INTO salt_returns\n (fun, jid, retval, id, success, full_ret)\n VALUES (?, ?, ?, ?, ?, ?)'''", "cu...
Return data to an odbc server
[ "Return", "data", "to", "an", "odbc", "server" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/odbc.py#L192-L211
train
saltstack/salt
salt/returners/odbc.py
get_jid
def get_jid(jid): ''' Return the information returned when the specified job id was executed ''' conn = _get_conn(ret=None) cur = conn.cursor() sql = '''SELECT id, full_ret FROM salt_returns WHERE jid = ?''' cur.execute(sql, (jid,)) data = cur.fetchall() ret = {} if data: ...
python
def get_jid(jid): ''' Return the information returned when the specified job id was executed ''' conn = _get_conn(ret=None) cur = conn.cursor() sql = '''SELECT id, full_ret FROM salt_returns WHERE jid = ?''' cur.execute(sql, (jid,)) data = cur.fetchall() ret = {} if data: ...
[ "def", "get_jid", "(", "jid", ")", ":", "conn", "=", "_get_conn", "(", "ret", "=", "None", ")", "cur", "=", "conn", ".", "cursor", "(", ")", "sql", "=", "'''SELECT id, full_ret FROM salt_returns WHERE jid = ?'''", "cur", ".", "execute", "(", "sql", ",", "(...
Return the information returned when the specified job id was executed
[ "Return", "the", "information", "returned", "when", "the", "specified", "job", "id", "was", "executed" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/odbc.py#L249-L264
train
saltstack/salt
salt/returners/odbc.py
get_fun
def get_fun(fun): ''' Return a dict of the last function called for all minions ''' conn = _get_conn(ret=None) cur = conn.cursor() sql = '''SELECT s.id,s.jid, s.full_ret FROM salt_returns s JOIN ( SELECT MAX(jid) AS jid FROM salt_returns GROUP BY fun, id) max ...
python
def get_fun(fun): ''' Return a dict of the last function called for all minions ''' conn = _get_conn(ret=None) cur = conn.cursor() sql = '''SELECT s.id,s.jid, s.full_ret FROM salt_returns s JOIN ( SELECT MAX(jid) AS jid FROM salt_returns GROUP BY fun, id) max ...
[ "def", "get_fun", "(", "fun", ")", ":", "conn", "=", "_get_conn", "(", "ret", "=", "None", ")", "cur", "=", "conn", ".", "cursor", "(", ")", "sql", "=", "'''SELECT s.id,s.jid, s.full_ret\n FROM salt_returns s\n JOIN ( SELECT MAX(jid) AS jid FROM sa...
Return a dict of the last function called for all minions
[ "Return", "a", "dict", "of", "the", "last", "function", "called", "for", "all", "minions" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/odbc.py#L267-L288
train
saltstack/salt
salt/returners/odbc.py
get_jids
def get_jids(): ''' Return a list of all job ids ''' conn = _get_conn(ret=None) cur = conn.cursor() sql = '''SELECT distinct jid, load FROM jids''' cur.execute(sql) data = cur.fetchall() ret = {} for jid, load in data: ret[jid] = salt.utils.jid.format_jid_instance(jid, s...
python
def get_jids(): ''' Return a list of all job ids ''' conn = _get_conn(ret=None) cur = conn.cursor() sql = '''SELECT distinct jid, load FROM jids''' cur.execute(sql) data = cur.fetchall() ret = {} for jid, load in data: ret[jid] = salt.utils.jid.format_jid_instance(jid, s...
[ "def", "get_jids", "(", ")", ":", "conn", "=", "_get_conn", "(", "ret", "=", "None", ")", "cur", "=", "conn", ".", "cursor", "(", ")", "sql", "=", "'''SELECT distinct jid, load FROM jids'''", "cur", ".", "execute", "(", "sql", ")", "data", "=", "cur", ...
Return a list of all job ids
[ "Return", "a", "list", "of", "all", "job", "ids" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/odbc.py#L291-L305
train
saltstack/salt
salt/states/smartos.py
_load_config
def _load_config(): ''' Loads and parses /usbkey/config ''' config = {} if os.path.isfile('/usbkey/config'): with salt.utils.files.fopen('/usbkey/config', 'r') as config_file: for optval in config_file: optval = salt.utils.stringutils.to_unicode(optval) ...
python
def _load_config(): ''' Loads and parses /usbkey/config ''' config = {} if os.path.isfile('/usbkey/config'): with salt.utils.files.fopen('/usbkey/config', 'r') as config_file: for optval in config_file: optval = salt.utils.stringutils.to_unicode(optval) ...
[ "def", "_load_config", "(", ")", ":", "config", "=", "{", "}", "if", "os", ".", "path", ".", "isfile", "(", "'/usbkey/config'", ")", ":", "with", "salt", ".", "utils", ".", "files", ".", "fopen", "(", "'/usbkey/config'", ",", "'r'", ")", "as", "confi...
Loads and parses /usbkey/config
[ "Loads", "and", "parses", "/", "usbkey", "/", "config" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L185-L202
train
saltstack/salt
salt/states/smartos.py
_write_config
def _write_config(config): ''' writes /usbkey/config ''' try: with salt.utils.atomicfile.atomic_open('/usbkey/config', 'w') as config_file: config_file.write("#\n# This file was generated by salt\n#\n") for prop in salt.utils.odict.OrderedDict(sorted(config.items())): ...
python
def _write_config(config): ''' writes /usbkey/config ''' try: with salt.utils.atomicfile.atomic_open('/usbkey/config', 'w') as config_file: config_file.write("#\n# This file was generated by salt\n#\n") for prop in salt.utils.odict.OrderedDict(sorted(config.items())): ...
[ "def", "_write_config", "(", "config", ")", ":", "try", ":", "with", "salt", ".", "utils", ".", "atomicfile", ".", "atomic_open", "(", "'/usbkey/config'", ",", "'w'", ")", "as", "config_file", ":", "config_file", ".", "write", "(", "\"#\\n# This file was gener...
writes /usbkey/config
[ "writes", "/", "usbkey", "/", "config" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L205-L225
train
saltstack/salt
salt/states/smartos.py
_parse_vmconfig
def _parse_vmconfig(config, instances): ''' Parse vm_present vm config ''' vmconfig = None if isinstance(config, (salt.utils.odict.OrderedDict)): vmconfig = salt.utils.odict.OrderedDict() for prop in config: if prop not in instances: vmconfig[prop] = conf...
python
def _parse_vmconfig(config, instances): ''' Parse vm_present vm config ''' vmconfig = None if isinstance(config, (salt.utils.odict.OrderedDict)): vmconfig = salt.utils.odict.OrderedDict() for prop in config: if prop not in instances: vmconfig[prop] = conf...
[ "def", "_parse_vmconfig", "(", "config", ",", "instances", ")", ":", "vmconfig", "=", "None", "if", "isinstance", "(", "config", ",", "(", "salt", ".", "utils", ".", "odict", ".", "OrderedDict", ")", ")", ":", "vmconfig", "=", "salt", ".", "utils", "."...
Parse vm_present vm config
[ "Parse", "vm_present", "vm", "config" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L228-L253
train
saltstack/salt
salt/states/smartos.py
_get_instance_changes
def _get_instance_changes(current, state): ''' get modified properties ''' # get keys current_keys = set(current.keys()) state_keys = set(state.keys()) # compare configs changed = salt.utils.data.compare_dicts(current, state) for change in salt.utils.data.compare_dicts(current, stat...
python
def _get_instance_changes(current, state): ''' get modified properties ''' # get keys current_keys = set(current.keys()) state_keys = set(state.keys()) # compare configs changed = salt.utils.data.compare_dicts(current, state) for change in salt.utils.data.compare_dicts(current, stat...
[ "def", "_get_instance_changes", "(", "current", ",", "state", ")", ":", "# get keys", "current_keys", "=", "set", "(", "current", ".", "keys", "(", ")", ")", "state_keys", "=", "set", "(", "state", ".", "keys", "(", ")", ")", "# compare configs", "changed"...
get modified properties
[ "get", "modified", "properties" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L256-L272
train
saltstack/salt
salt/states/smartos.py
config_present
def config_present(name, value): ''' Ensure configuration property is set to value in /usbkey/config name : string name of property value : string value of property ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, ...
python
def config_present(name, value): ''' Ensure configuration property is set to value in /usbkey/config name : string name of property value : string value of property ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, ...
[ "def", "config_present", "(", "name", ",", "value", ")", ":", "name", "=", "name", ".", "lower", "(", ")", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "#...
Ensure configuration property is set to value in /usbkey/config name : string name of property value : string value of property
[ "Ensure", "configuration", "property", "is", "set", "to", "value", "in", "/", "usbkey", "/", "config" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L329-L376
train
saltstack/salt
salt/states/smartos.py
config_absent
def config_absent(name): ''' Ensure configuration property is absent in /usbkey/config name : string name of property ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, 'comment': ''} # load configuration config = _load...
python
def config_absent(name): ''' Ensure configuration property is absent in /usbkey/config name : string name of property ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, 'comment': ''} # load configuration config = _load...
[ "def", "config_absent", "(", "name", ")", ":", "name", "=", "name", ".", "lower", "(", ")", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "# load configuration...
Ensure configuration property is absent in /usbkey/config name : string name of property
[ "Ensure", "configuration", "property", "is", "absent", "in", "/", "usbkey", "/", "config" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L379-L411
train
saltstack/salt
salt/states/smartos.py
source_present
def source_present(name, source_type='imgapi'): ''' Ensure an image source is present on the computenode name : string source url source_type : string source type (imgapi or docker) ''' ret = {'name': name, 'changes': {}, 'result': None, 'comment...
python
def source_present(name, source_type='imgapi'): ''' Ensure an image source is present on the computenode name : string source url source_type : string source type (imgapi or docker) ''' ret = {'name': name, 'changes': {}, 'result': None, 'comment...
[ "def", "source_present", "(", "name", ",", "source_type", "=", "'imgapi'", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "if", "name", "in", "__salt_...
Ensure an image source is present on the computenode name : string source url source_type : string source type (imgapi or docker)
[ "Ensure", "an", "image", "source", "is", "present", "on", "the", "computenode" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L414-L449
train
saltstack/salt
salt/states/smartos.py
source_absent
def source_absent(name): ''' Ensure an image source is absent on the computenode name : string source url ''' ret = {'name': name, 'changes': {}, 'result': None, 'comment': ''} if name not in __salt__['imgadm.sources'](): # source is absent ...
python
def source_absent(name): ''' Ensure an image source is absent on the computenode name : string source url ''' ret = {'name': name, 'changes': {}, 'result': None, 'comment': ''} if name not in __salt__['imgadm.sources'](): # source is absent ...
[ "def", "source_absent", "(", "name", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "if", "name", "not", "in", "__salt__", "[", "'imgadm.sources'", "]...
Ensure an image source is absent on the computenode name : string source url
[ "Ensure", "an", "image", "source", "is", "absent", "on", "the", "computenode" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L452-L485
train
saltstack/salt
salt/states/smartos.py
image_present
def image_present(name): ''' Ensure image is present on the computenode name : string uuid of image ''' ret = {'name': name, 'changes': {}, 'result': None, 'comment': ''} if _is_docker_uuid(name) and __salt__['imgadm.docker_to_uuid'](name): # do...
python
def image_present(name): ''' Ensure image is present on the computenode name : string uuid of image ''' ret = {'name': name, 'changes': {}, 'result': None, 'comment': ''} if _is_docker_uuid(name) and __salt__['imgadm.docker_to_uuid'](name): # do...
[ "def", "image_present", "(", "name", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "if", "_is_docker_uuid", "(", "name", ")", "and", "__salt__", "[",...
Ensure image is present on the computenode name : string uuid of image
[ "Ensure", "image", "is", "present", "on", "the", "computenode" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L488-L542
train
saltstack/salt
salt/states/smartos.py
image_absent
def image_absent(name): ''' Ensure image is absent on the computenode name : string uuid of image .. note:: computenode.image_absent will only remove the image if it is not used by a vm. ''' ret = {'name': name, 'changes': {}, 'result': None, ...
python
def image_absent(name): ''' Ensure image is absent on the computenode name : string uuid of image .. note:: computenode.image_absent will only remove the image if it is not used by a vm. ''' ret = {'name': name, 'changes': {}, 'result': None, ...
[ "def", "image_absent", "(", "name", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "uuid", "=", "None", "if", "_is_uuid", "(", "name", ")", ":", "...
Ensure image is absent on the computenode name : string uuid of image .. note:: computenode.image_absent will only remove the image if it is not used by a vm.
[ "Ensure", "image", "is", "absent", "on", "the", "computenode" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L545-L604
train
saltstack/salt
salt/states/smartos.py
image_vacuum
def image_vacuum(name): ''' Delete images not in use or installed via image_present .. warning:: Only image_present states that are included via the top file will be detected. ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, ...
python
def image_vacuum(name): ''' Delete images not in use or installed via image_present .. warning:: Only image_present states that are included via the top file will be detected. ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, ...
[ "def", "image_vacuum", "(", "name", ")", ":", "name", "=", "name", ".", "lower", "(", ")", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "# list of images to k...
Delete images not in use or installed via image_present .. warning:: Only image_present states that are included via the top file will be detected.
[ "Delete", "images", "not", "in", "use", "or", "installed", "via", "image_present" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L607-L685
train
saltstack/salt
salt/states/smartos.py
vm_present
def vm_present(name, vmconfig, config=None): ''' Ensure vm is present on the computenode name : string hostname of vm vmconfig : dict options to set for the vm config : dict fine grain control over vm_present .. note:: The following configuration properties can...
python
def vm_present(name, vmconfig, config=None): ''' Ensure vm is present on the computenode name : string hostname of vm vmconfig : dict options to set for the vm config : dict fine grain control over vm_present .. note:: The following configuration properties can...
[ "def", "vm_present", "(", "name", ",", "vmconfig", ",", "config", "=", "None", ")", ":", "name", "=", "name", ".", "lower", "(", ")", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'co...
Ensure vm is present on the computenode name : string hostname of vm vmconfig : dict options to set for the vm config : dict fine grain control over vm_present .. note:: The following configuration properties can be toggled in the config parameter. - kvm_rebo...
[ "Ensure", "vm", "is", "present", "on", "the", "computenode" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L688-L1120
train
saltstack/salt
salt/states/smartos.py
vm_absent
def vm_absent(name, archive=False): ''' Ensure vm is absent on the computenode name : string hostname of vm archive : boolean toggle archiving of vm on removal .. note:: State ID is used as hostname. Hostnames must be unique. ''' name = name.lower() ret = {'na...
python
def vm_absent(name, archive=False): ''' Ensure vm is absent on the computenode name : string hostname of vm archive : boolean toggle archiving of vm on removal .. note:: State ID is used as hostname. Hostnames must be unique. ''' name = name.lower() ret = {'na...
[ "def", "vm_absent", "(", "name", ",", "archive", "=", "False", ")", ":", "name", "=", "name", ".", "lower", "(", ")", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "'...
Ensure vm is absent on the computenode name : string hostname of vm archive : boolean toggle archiving of vm on removal .. note:: State ID is used as hostname. Hostnames must be unique.
[ "Ensure", "vm", "is", "absent", "on", "the", "computenode" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L1123-L1165
train
saltstack/salt
salt/states/smartos.py
vm_running
def vm_running(name): ''' Ensure vm is in the running state on the computenode name : string hostname of vm .. note:: State ID is used as hostname. Hostnames must be unique. ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, ...
python
def vm_running(name): ''' Ensure vm is in the running state on the computenode name : string hostname of vm .. note:: State ID is used as hostname. Hostnames must be unique. ''' name = name.lower() ret = {'name': name, 'changes': {}, 'result': None, ...
[ "def", "vm_running", "(", "name", ")", ":", "name", "=", "name", ".", "lower", "(", ")", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "None", ",", "'comment'", ":", "''", "}", "if", "name", "in", ...
Ensure vm is in the running state on the computenode name : string hostname of vm .. note:: State ID is used as hostname. Hostnames must be unique.
[ "Ensure", "vm", "is", "in", "the", "running", "state", "on", "the", "computenode" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/smartos.py#L1168-L1200
train
saltstack/salt
salt/states/ports.py
_repack_options
def _repack_options(options): ''' Repack the options data ''' return dict( [ (six.text_type(x), _normalize(y)) for x, y in six.iteritems(salt.utils.data.repack_dictlist(options)) ] )
python
def _repack_options(options): ''' Repack the options data ''' return dict( [ (six.text_type(x), _normalize(y)) for x, y in six.iteritems(salt.utils.data.repack_dictlist(options)) ] )
[ "def", "_repack_options", "(", "options", ")", ":", "return", "dict", "(", "[", "(", "six", ".", "text_type", "(", "x", ")", ",", "_normalize", "(", "y", ")", ")", "for", "x", ",", "y", "in", "six", ".", "iteritems", "(", "salt", ".", "utils", "....
Repack the options data
[ "Repack", "the", "options", "data" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/ports.py#L42-L51
train
saltstack/salt
salt/states/ports.py
_get_option_list
def _get_option_list(options): ''' Returns the key/value pairs in the passed dict in a commaspace-delimited list in the format "key=value". ''' return ', '.join(['{0}={1}'.format(x, y) for x, y in six.iteritems(options)])
python
def _get_option_list(options): ''' Returns the key/value pairs in the passed dict in a commaspace-delimited list in the format "key=value". ''' return ', '.join(['{0}={1}'.format(x, y) for x, y in six.iteritems(options)])
[ "def", "_get_option_list", "(", "options", ")", ":", "return", "', '", ".", "join", "(", "[", "'{0}={1}'", ".", "format", "(", "x", ",", "y", ")", "for", "x", ",", "y", "in", "six", ".", "iteritems", "(", "options", ")", "]", ")" ]
Returns the key/value pairs in the passed dict in a commaspace-delimited list in the format "key=value".
[ "Returns", "the", "key", "/", "value", "pairs", "in", "the", "passed", "dict", "in", "a", "commaspace", "-", "delimited", "list", "in", "the", "format", "key", "=", "value", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/ports.py#L54-L59
train
saltstack/salt
salt/states/ports.py
installed
def installed(name, options=None): ''' Verify that the desired port is installed, and that it was compiled with the desired options. options Make sure that the desired non-default options are set .. warning:: Any build options not passed here assume the default values for ...
python
def installed(name, options=None): ''' Verify that the desired port is installed, and that it was compiled with the desired options. options Make sure that the desired non-default options are set .. warning:: Any build options not passed here assume the default values for ...
[ "def", "installed", "(", "name", ",", "options", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'result'", ":", "True", ",", "'comment'", ":", "'{0} is already installed'", ".", "format", "(", "nam...
Verify that the desired port is installed, and that it was compiled with the desired options. options Make sure that the desired non-default options are set .. warning:: Any build options not passed here assume the default values for the port, and are not just differen...
[ "Verify", "that", "the", "desired", "port", "is", "installed", "and", "that", "it", "was", "compiled", "with", "the", "desired", "options", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/ports.py#L73-L186
train
saltstack/salt
salt/states/win_network.py
_validate
def _validate(dns_proto, dns_servers, ip_proto, ip_addrs, gateway): ''' Ensure that the configuration passed is formatted correctly and contains valid IP addresses, etc. ''' errors = [] # Validate DNS configuration if dns_proto == 'dhcp': if dns_servers is not None: error...
python
def _validate(dns_proto, dns_servers, ip_proto, ip_addrs, gateway): ''' Ensure that the configuration passed is formatted correctly and contains valid IP addresses, etc. ''' errors = [] # Validate DNS configuration if dns_proto == 'dhcp': if dns_servers is not None: error...
[ "def", "_validate", "(", "dns_proto", ",", "dns_servers", ",", "ip_proto", ",", "ip_addrs", ",", "gateway", ")", ":", "errors", "=", "[", "]", "# Validate DNS configuration", "if", "dns_proto", "==", "'dhcp'", ":", "if", "dns_servers", "is", "not", "None", "...
Ensure that the configuration passed is formatted correctly and contains valid IP addresses, etc.
[ "Ensure", "that", "the", "configuration", "passed", "is", "formatted", "correctly", "and", "contains", "valid", "IP", "addresses", "etc", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/win_network.py#L94-L154
train
saltstack/salt
salt/states/win_network.py
_changes
def _changes(cur, dns_proto, dns_servers, ip_proto, ip_addrs, gateway): ''' Compares the current interface against the desired configuration and returns a dictionary describing the changes that need to be made. ''' changes = {} cur_dns_proto = ( 'static' if 'Statically Configured DNS Ser...
python
def _changes(cur, dns_proto, dns_servers, ip_proto, ip_addrs, gateway): ''' Compares the current interface against the desired configuration and returns a dictionary describing the changes that need to be made. ''' changes = {} cur_dns_proto = ( 'static' if 'Statically Configured DNS Ser...
[ "def", "_changes", "(", "cur", ",", "dns_proto", ",", "dns_servers", ",", "ip_proto", ",", "ip_addrs", ",", "gateway", ")", ":", "changes", "=", "{", "}", "cur_dns_proto", "=", "(", "'static'", "if", "'Statically Configured DNS Servers'", "in", "cur", "else", ...
Compares the current interface against the desired configuration and returns a dictionary describing the changes that need to be made.
[ "Compares", "the", "current", "interface", "against", "the", "desired", "configuration", "and", "returns", "a", "dictionary", "describing", "the", "changes", "that", "need", "to", "be", "made", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/win_network.py#L168-L206
train
saltstack/salt
salt/states/win_network.py
managed
def managed(name, dns_proto=None, dns_servers=None, ip_proto=None, ip_addrs=None, gateway=None, enabled=True, **kwargs): ''' Ensure that the named interface is configured properly. Args: name (str): The...
python
def managed(name, dns_proto=None, dns_servers=None, ip_proto=None, ip_addrs=None, gateway=None, enabled=True, **kwargs): ''' Ensure that the named interface is configured properly. Args: name (str): The...
[ "def", "managed", "(", "name", ",", "dns_proto", "=", "None", ",", "dns_servers", "=", "None", ",", "ip_proto", "=", "None", ",", "ip_addrs", "=", "None", ",", "gateway", "=", "None", ",", "enabled", "=", "True", ",", "*", "*", "kwargs", ")", ":", ...
Ensure that the named interface is configured properly. Args: name (str): The name of the interface to manage dns_proto (str): None Set to ``static`` and use the ``dns_servers`` parameter to provide a list of DNS nameservers. set to ``dhcp`` to use DHCP to get ...
[ "Ensure", "that", "the", "named", "interface", "is", "configured", "properly", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/win_network.py#L209-L442
train
saltstack/salt
salt/utils/rsax931.py
_load_libcrypto
def _load_libcrypto(): ''' Load OpenSSL libcrypto ''' if sys.platform.startswith('win'): # cdll.LoadLibrary on windows requires an 'str' argument return cdll.LoadLibrary(str('libeay32')) # future lint: disable=blacklisted-function elif getattr(sys, 'frozen', False) and salt.utils.pl...
python
def _load_libcrypto(): ''' Load OpenSSL libcrypto ''' if sys.platform.startswith('win'): # cdll.LoadLibrary on windows requires an 'str' argument return cdll.LoadLibrary(str('libeay32')) # future lint: disable=blacklisted-function elif getattr(sys, 'frozen', False) and salt.utils.pl...
[ "def", "_load_libcrypto", "(", ")", ":", "if", "sys", ".", "platform", ".", "startswith", "(", "'win'", ")", ":", "# cdll.LoadLibrary on windows requires an 'str' argument", "return", "cdll", ".", "LoadLibrary", "(", "str", "(", "'libeay32'", ")", ")", "# future l...
Load OpenSSL libcrypto
[ "Load", "OpenSSL", "libcrypto" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/rsax931.py#L26-L53
train
saltstack/salt
salt/utils/rsax931.py
_init_libcrypto
def _init_libcrypto(): ''' Set up libcrypto argtypes and initialize the library ''' libcrypto = _load_libcrypto() try: libcrypto.OPENSSL_init_crypto() except AttributeError: # Support for OpenSSL < 1.1 (OPENSSL_API_COMPAT < 0x10100000L) libcrypto.OPENSSL_no_config() ...
python
def _init_libcrypto(): ''' Set up libcrypto argtypes and initialize the library ''' libcrypto = _load_libcrypto() try: libcrypto.OPENSSL_init_crypto() except AttributeError: # Support for OpenSSL < 1.1 (OPENSSL_API_COMPAT < 0x10100000L) libcrypto.OPENSSL_no_config() ...
[ "def", "_init_libcrypto", "(", ")", ":", "libcrypto", "=", "_load_libcrypto", "(", ")", "try", ":", "libcrypto", ".", "OPENSSL_init_crypto", "(", ")", "except", "AttributeError", ":", "# Support for OpenSSL < 1.1 (OPENSSL_API_COMPAT < 0x10100000L)", "libcrypto", ".", "O...
Set up libcrypto argtypes and initialize the library
[ "Set", "up", "libcrypto", "argtypes", "and", "initialize", "the", "library" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/rsax931.py#L56-L83
train
saltstack/salt
salt/utils/rsax931.py
RSAX931Signer.sign
def sign(self, msg): ''' Sign a message (digest) using the private key :param str msg: The message (digest) to sign :rtype: str :return: The signature, or an empty string if the encryption failed ''' # Allocate a buffer large enough for the signature. Freed by ct...
python
def sign(self, msg): ''' Sign a message (digest) using the private key :param str msg: The message (digest) to sign :rtype: str :return: The signature, or an empty string if the encryption failed ''' # Allocate a buffer large enough for the signature. Freed by ct...
[ "def", "sign", "(", "self", ",", "msg", ")", ":", "# Allocate a buffer large enough for the signature. Freed by ctypes.", "buf", "=", "create_string_buffer", "(", "libcrypto", ".", "RSA_size", "(", "self", ".", "_rsa", ")", ")", "msg", "=", "salt", ".", "utils", ...
Sign a message (digest) using the private key :param str msg: The message (digest) to sign :rtype: str :return: The signature, or an empty string if the encryption failed
[ "Sign", "a", "message", "(", "digest", ")", "using", "the", "private", "key" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/rsax931.py#L112-L126
train
saltstack/salt
salt/utils/rsax931.py
RSAX931Verifier.verify
def verify(self, signed): ''' Recover the message (digest) from the signature using the public key :param str signed: The signature created with the private key :rtype: str :return: The message (digest) recovered from the signature, or an empty string if the decrypti...
python
def verify(self, signed): ''' Recover the message (digest) from the signature using the public key :param str signed: The signature created with the private key :rtype: str :return: The message (digest) recovered from the signature, or an empty string if the decrypti...
[ "def", "verify", "(", "self", ",", "signed", ")", ":", "# Allocate a buffer large enough for the signature. Freed by ctypes.", "buf", "=", "create_string_buffer", "(", "libcrypto", ".", "RSA_size", "(", "self", ".", "_rsa", ")", ")", "signed", "=", "salt", ".", "u...
Recover the message (digest) from the signature using the public key :param str signed: The signature created with the private key :rtype: str :return: The message (digest) recovered from the signature, or an empty string if the decryption failed
[ "Recover", "the", "message", "(", "digest", ")", "from", "the", "signature", "using", "the", "public", "key" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/rsax931.py#L150-L165
train
saltstack/salt
salt/modules/cabal.py
install
def install(pkg=None, pkgs=None, user=None, install_global=False, env=None): ''' Install a cabal package. pkg A package name in format accepted by cabal-install. See: https://wiki.haskell.org/Cabal-Install pkgs A list of packages ...
python
def install(pkg=None, pkgs=None, user=None, install_global=False, env=None): ''' Install a cabal package. pkg A package name in format accepted by cabal-install. See: https://wiki.haskell.org/Cabal-Install pkgs A list of packages ...
[ "def", "install", "(", "pkg", "=", "None", ",", "pkgs", "=", "None", ",", "user", "=", "None", ",", "install_global", "=", "False", ",", "env", "=", "None", ")", ":", "cmd", "=", "[", "'cabal install'", "]", "if", "install_global", ":", "cmd", ".", ...
Install a cabal package. pkg A package name in format accepted by cabal-install. See: https://wiki.haskell.org/Cabal-Install pkgs A list of packages names in same format as ``pkg`` user The user to run cabal install with install_global Install package globally...
[ "Install", "a", "cabal", "package", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/cabal.py#L54-L103
train
saltstack/salt
salt/modules/cabal.py
list_
def list_( pkg=None, user=None, installed=False, env=None): ''' List packages matching a search string. pkg Search string for matching package names user The user to run cabal list with installed If True, only return installed packages. en...
python
def list_( pkg=None, user=None, installed=False, env=None): ''' List packages matching a search string. pkg Search string for matching package names user The user to run cabal list with installed If True, only return installed packages. en...
[ "def", "list_", "(", "pkg", "=", "None", ",", "user", "=", "None", ",", "installed", "=", "False", ",", "env", "=", "None", ")", ":", "cmd", "=", "[", "'cabal list --simple-output'", "]", "if", "installed", ":", "cmd", ".", "append", "(", "'--installed...
List packages matching a search string. pkg Search string for matching package names user The user to run cabal list with installed If True, only return installed packages. env Environment variables to set when invoking cabal. Uses the same ``env`` format as the ...
[ "List", "packages", "matching", "a", "search", "string", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/cabal.py#L106-L149
train
saltstack/salt
salt/modules/cabal.py
uninstall
def uninstall(pkg, user=None, env=None): ''' Uninstall a cabal package. pkg The package to uninstall user The user to run ghc-pkg unregister with env Environment variables to set when invoking cabal. Uses the same ``env`` format as the :py...
python
def uninstall(pkg, user=None, env=None): ''' Uninstall a cabal package. pkg The package to uninstall user The user to run ghc-pkg unregister with env Environment variables to set when invoking cabal. Uses the same ``env`` format as the :py...
[ "def", "uninstall", "(", "pkg", ",", "user", "=", "None", ",", "env", "=", "None", ")", ":", "cmd", "=", "[", "'ghc-pkg unregister'", "]", "cmd", ".", "append", "(", "'\"{0}\"'", ".", "format", "(", "pkg", ")", ")", "result", "=", "__salt__", "[", ...
Uninstall a cabal package. pkg The package to uninstall user The user to run ghc-pkg unregister with env Environment variables to set when invoking cabal. Uses the same ``env`` format as the :py:func:`cmd.run <salt.modules.cmdmod.run>` execution function CLI Exa...
[ "Uninstall", "a", "cabal", "package", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/cabal.py#L152-L182
train
saltstack/salt
salt/renderers/yamlex.py
render
def render(sls_data, saltenv='base', sls='', **kws): ''' Accepts YAML_EX as a string or as a file object and runs it through the YAML_EX parser. :rtype: A Python data structure ''' with warnings.catch_warnings(record=True) as warn_list: data = deserialize(sls_data) or {} for it...
python
def render(sls_data, saltenv='base', sls='', **kws): ''' Accepts YAML_EX as a string or as a file object and runs it through the YAML_EX parser. :rtype: A Python data structure ''' with warnings.catch_warnings(record=True) as warn_list: data = deserialize(sls_data) or {} for it...
[ "def", "render", "(", "sls_data", ",", "saltenv", "=", "'base'", ",", "sls", "=", "''", ",", "*", "*", "kws", ")", ":", "with", "warnings", ".", "catch_warnings", "(", "record", "=", "True", ")", "as", "warn_list", ":", "data", "=", "deserialize", "(...
Accepts YAML_EX as a string or as a file object and runs it through the YAML_EX parser. :rtype: A Python data structure
[ "Accepts", "YAML_EX", "as", "a", "string", "or", "as", "a", "file", "object", "and", "runs", "it", "through", "the", "YAML_EX", "parser", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/renderers/yamlex.py#L15-L33
train
saltstack/salt
salt/returners/django_return.py
returner
def returner(ret): ''' Signal a Django server that a return is available ''' signaled = dispatch.Signal(providing_args=['ret']).send(sender='returner', ret=ret) for signal in signaled: log.debug( 'Django returner function \'returner\' signaled %s ' 'which responded w...
python
def returner(ret): ''' Signal a Django server that a return is available ''' signaled = dispatch.Signal(providing_args=['ret']).send(sender='returner', ret=ret) for signal in signaled: log.debug( 'Django returner function \'returner\' signaled %s ' 'which responded w...
[ "def", "returner", "(", "ret", ")", ":", "signaled", "=", "dispatch", ".", "Signal", "(", "providing_args", "=", "[", "'ret'", "]", ")", ".", "send", "(", "sender", "=", "'returner'", ",", "ret", "=", "ret", ")", "for", "signal", "in", "signaled", ":...
Signal a Django server that a return is available
[ "Signal", "a", "Django", "server", "that", "a", "return", "is", "available" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/django_return.py#L57-L67
train
saltstack/salt
salt/returners/django_return.py
save_load
def save_load(jid, load, minions=None): ''' Save the load to the specified jid ''' signaled = dispatch.Signal( providing_args=['jid', 'load']).send( sender='save_load', jid=jid, load=load) for signal in signaled: log.debug( 'Django returner function \'save_lo...
python
def save_load(jid, load, minions=None): ''' Save the load to the specified jid ''' signaled = dispatch.Signal( providing_args=['jid', 'load']).send( sender='save_load', jid=jid, load=load) for signal in signaled: log.debug( 'Django returner function \'save_lo...
[ "def", "save_load", "(", "jid", ",", "load", ",", "minions", "=", "None", ")", ":", "signaled", "=", "dispatch", ".", "Signal", "(", "providing_args", "=", "[", "'jid'", ",", "'load'", "]", ")", ".", "send", "(", "sender", "=", "'save_load'", ",", "j...
Save the load to the specified jid
[ "Save", "the", "load", "to", "the", "specified", "jid" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/django_return.py#L70-L82
train
saltstack/salt
salt/returners/django_return.py
prep_jid
def prep_jid(nocache=False, passed_jid=None): ''' Do any work necessary to prepare a JID, including sending a custom ID ''' return passed_jid if passed_jid is not None else salt.utils.jid.gen_jid(__opts__)
python
def prep_jid(nocache=False, passed_jid=None): ''' Do any work necessary to prepare a JID, including sending a custom ID ''' return passed_jid if passed_jid is not None else salt.utils.jid.gen_jid(__opts__)
[ "def", "prep_jid", "(", "nocache", "=", "False", ",", "passed_jid", "=", "None", ")", ":", "return", "passed_jid", "if", "passed_jid", "is", "not", "None", "else", "salt", ".", "utils", ".", "jid", ".", "gen_jid", "(", "__opts__", ")" ]
Do any work necessary to prepare a JID, including sending a custom ID
[ "Do", "any", "work", "necessary", "to", "prepare", "a", "JID", "including", "sending", "a", "custom", "ID" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/returners/django_return.py#L85-L89
train
saltstack/salt
salt/client/netapi.py
NetapiClient.run
def run(self): ''' Load and start all available api modules ''' if not len(self.netapi): log.error("Did not find any netapi configurations, nothing to start") kwargs = {} if salt.utils.platform.is_windows(): kwargs['log_queue'] = salt.log.setup.ge...
python
def run(self): ''' Load and start all available api modules ''' if not len(self.netapi): log.error("Did not find any netapi configurations, nothing to start") kwargs = {} if salt.utils.platform.is_windows(): kwargs['log_queue'] = salt.log.setup.ge...
[ "def", "run", "(", "self", ")", ":", "if", "not", "len", "(", "self", ".", "netapi", ")", ":", "log", ".", "error", "(", "\"Did not find any netapi configurations, nothing to start\"", ")", "kwargs", "=", "{", "}", "if", "salt", ".", "utils", ".", "platfor...
Load and start all available api modules
[ "Load", "and", "start", "all", "available", "api", "modules" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/client/netapi.py#L61-L92
train
saltstack/salt
salt/tops/varstack_top.py
top
def top(**kwargs): ''' Query |varstack| for the top data (states of the minions). ''' conf = __opts__['master_tops']['varstack'] __grains__ = kwargs['grains'] vs_ = varstack.Varstack(config_filename=conf) ret = vs_.evaluate(__grains__) return {'base': ret['states']}
python
def top(**kwargs): ''' Query |varstack| for the top data (states of the minions). ''' conf = __opts__['master_tops']['varstack'] __grains__ = kwargs['grains'] vs_ = varstack.Varstack(config_filename=conf) ret = vs_.evaluate(__grains__) return {'base': ret['states']}
[ "def", "top", "(", "*", "*", "kwargs", ")", ":", "conf", "=", "__opts__", "[", "'master_tops'", "]", "[", "'varstack'", "]", "__grains__", "=", "kwargs", "[", "'grains'", "]", "vs_", "=", "varstack", ".", "Varstack", "(", "config_filename", "=", "conf", ...
Query |varstack| for the top data (states of the minions).
[ "Query", "|varstack|", "for", "the", "top", "data", "(", "states", "of", "the", "minions", ")", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/tops/varstack_top.py#L61-L71
train
saltstack/salt
salt/auth/keystone.py
auth
def auth(username, password): ''' Try and authenticate ''' try: keystone = client.Client(username=username, password=password, auth_url=get_auth_url()) return keystone.authenticate() except (AuthorizationFailure, Unauthorized): return False
python
def auth(username, password): ''' Try and authenticate ''' try: keystone = client.Client(username=username, password=password, auth_url=get_auth_url()) return keystone.authenticate() except (AuthorizationFailure, Unauthorized): return False
[ "def", "auth", "(", "username", ",", "password", ")", ":", "try", ":", "keystone", "=", "client", ".", "Client", "(", "username", "=", "username", ",", "password", "=", "password", ",", "auth_url", "=", "get_auth_url", "(", ")", ")", "return", "keystone"...
Try and authenticate
[ "Try", "and", "authenticate" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/auth/keystone.py#L26-L35
train
saltstack/salt
salt/modules/xml.py
get_value
def get_value(file, element): ''' Returns the value of the matched xpath element CLI Example: .. code-block:: bash salt '*' xml.get_value /tmp/test.xml ".//element" ''' try: root = ET.parse(file) element = root.find(element) return element.text except Attri...
python
def get_value(file, element): ''' Returns the value of the matched xpath element CLI Example: .. code-block:: bash salt '*' xml.get_value /tmp/test.xml ".//element" ''' try: root = ET.parse(file) element = root.find(element) return element.text except Attri...
[ "def", "get_value", "(", "file", ",", "element", ")", ":", "try", ":", "root", "=", "ET", ".", "parse", "(", "file", ")", "element", "=", "root", ".", "find", "(", "element", ")", "return", "element", ".", "text", "except", "AttributeError", ":", "lo...
Returns the value of the matched xpath element CLI Example: .. code-block:: bash salt '*' xml.get_value /tmp/test.xml ".//element"
[ "Returns", "the", "value", "of", "the", "matched", "xpath", "element" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xml.py#L26-L42
train
saltstack/salt
salt/modules/xml.py
set_value
def set_value(file, element, value): ''' Sets the value of the matched xpath element CLI Example: .. code-block:: bash salt '*' xml.set_value /tmp/test.xml ".//element" "new value" ''' try: root = ET.parse(file) relement = root.find(element) except AttributeError: ...
python
def set_value(file, element, value): ''' Sets the value of the matched xpath element CLI Example: .. code-block:: bash salt '*' xml.set_value /tmp/test.xml ".//element" "new value" ''' try: root = ET.parse(file) relement = root.find(element) except AttributeError: ...
[ "def", "set_value", "(", "file", ",", "element", ",", "value", ")", ":", "try", ":", "root", "=", "ET", ".", "parse", "(", "file", ")", "relement", "=", "root", ".", "find", "(", "element", ")", "except", "AttributeError", ":", "log", ".", "error", ...
Sets the value of the matched xpath element CLI Example: .. code-block:: bash salt '*' xml.set_value /tmp/test.xml ".//element" "new value"
[ "Sets", "the", "value", "of", "the", "matched", "xpath", "element" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xml.py#L45-L63
train
saltstack/salt
salt/modules/xml.py
get_attribute
def get_attribute(file, element): ''' Return the attributes of the matched xpath element. CLI Example: .. code-block:: bash salt '*' xml.get_attribute /tmp/test.xml ".//element[@id='3']" ''' try: root = ET.parse(file) element = root.find(element) return element...
python
def get_attribute(file, element): ''' Return the attributes of the matched xpath element. CLI Example: .. code-block:: bash salt '*' xml.get_attribute /tmp/test.xml ".//element[@id='3']" ''' try: root = ET.parse(file) element = root.find(element) return element...
[ "def", "get_attribute", "(", "file", ",", "element", ")", ":", "try", ":", "root", "=", "ET", ".", "parse", "(", "file", ")", "element", "=", "root", ".", "find", "(", "element", ")", "return", "element", ".", "attrib", "except", "AttributeError", ":",...
Return the attributes of the matched xpath element. CLI Example: .. code-block:: bash salt '*' xml.get_attribute /tmp/test.xml ".//element[@id='3']"
[ "Return", "the", "attributes", "of", "the", "matched", "xpath", "element", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xml.py#L66-L82
train
saltstack/salt
salt/modules/xml.py
set_attribute
def set_attribute(file, element, key, value): ''' Set the requested attribute key and value for matched xpath element. CLI Example: .. code-block:: bash salt '*' xml.set_attribute /tmp/test.xml ".//element[@id='3']" editedby "gal" ''' try: root = ET.parse(file) element...
python
def set_attribute(file, element, key, value): ''' Set the requested attribute key and value for matched xpath element. CLI Example: .. code-block:: bash salt '*' xml.set_attribute /tmp/test.xml ".//element[@id='3']" editedby "gal" ''' try: root = ET.parse(file) element...
[ "def", "set_attribute", "(", "file", ",", "element", ",", "key", ",", "value", ")", ":", "try", ":", "root", "=", "ET", ".", "parse", "(", "file", ")", "element", "=", "root", ".", "find", "(", "element", ")", "except", "AttributeError", ":", "log", ...
Set the requested attribute key and value for matched xpath element. CLI Example: .. code-block:: bash salt '*' xml.set_attribute /tmp/test.xml ".//element[@id='3']" editedby "gal"
[ "Set", "the", "requested", "attribute", "key", "and", "value", "for", "matched", "xpath", "element", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xml.py#L85-L103
train
saltstack/salt
salt/utils/openstack/swift.py
SaltSwift.get_account
def get_account(self): ''' List Swift containers ''' try: listing = self.conn.get_account() return listing except Exception as exc: log.error('There was an error::') if hasattr(exc, 'code') and hasattr(exc, 'msg'): l...
python
def get_account(self): ''' List Swift containers ''' try: listing = self.conn.get_account() return listing except Exception as exc: log.error('There was an error::') if hasattr(exc, 'code') and hasattr(exc, 'msg'): l...
[ "def", "get_account", "(", "self", ")", ":", "try", ":", "listing", "=", "self", ".", "conn", ".", "get_account", "(", ")", "return", "listing", "except", "Exception", "as", "exc", ":", "log", ".", "error", "(", "'There was an error::'", ")", "if", "hasa...
List Swift containers
[ "List", "Swift", "containers" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/swift.py#L97-L109
train
saltstack/salt
salt/utils/openstack/swift.py
SaltSwift.get_object
def get_object(self, cont, obj, local_file=None, return_bin=False): ''' Retrieve a file from Swift ''' try: if local_file is None and return_bin is False: return False headers, body = self.conn.get_object(cont, obj, resp_chunk_size=65536) ...
python
def get_object(self, cont, obj, local_file=None, return_bin=False): ''' Retrieve a file from Swift ''' try: if local_file is None and return_bin is False: return False headers, body = self.conn.get_object(cont, obj, resp_chunk_size=65536) ...
[ "def", "get_object", "(", "self", ",", "cont", ",", "obj", ",", "local_file", "=", "None", ",", "return_bin", "=", "False", ")", ":", "try", ":", "if", "local_file", "is", "None", "and", "return_bin", "is", "False", ":", "return", "False", "headers", "...
Retrieve a file from Swift
[ "Retrieve", "a", "file", "from", "Swift" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/swift.py#L165-L197
train
saltstack/salt
salt/utils/openstack/swift.py
SaltSwift.put_object
def put_object(self, cont, obj, local_file): ''' Upload a file to Swift ''' try: with salt.utils.files.fopen(local_file, 'rb') as fp_: self.conn.put_object(cont, obj, fp_) return True except Exception as exc: log.error('There wa...
python
def put_object(self, cont, obj, local_file): ''' Upload a file to Swift ''' try: with salt.utils.files.fopen(local_file, 'rb') as fp_: self.conn.put_object(cont, obj, fp_) return True except Exception as exc: log.error('There wa...
[ "def", "put_object", "(", "self", ",", "cont", ",", "obj", ",", "local_file", ")", ":", "try", ":", "with", "salt", ".", "utils", ".", "files", ".", "fopen", "(", "local_file", ",", "'rb'", ")", "as", "fp_", ":", "self", ".", "conn", ".", "put_obje...
Upload a file to Swift
[ "Upload", "a", "file", "to", "Swift" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/swift.py#L199-L212
train
saltstack/salt
salt/utils/openstack/swift.py
SaltSwift.delete_object
def delete_object(self, cont, obj): ''' Delete a file from Swift ''' try: self.conn.delete_object(cont, obj) return True except Exception as exc: log.error('There was an error::') if hasattr(exc, 'code') and hasattr(exc, 'msg'): ...
python
def delete_object(self, cont, obj): ''' Delete a file from Swift ''' try: self.conn.delete_object(cont, obj) return True except Exception as exc: log.error('There was an error::') if hasattr(exc, 'code') and hasattr(exc, 'msg'): ...
[ "def", "delete_object", "(", "self", ",", "cont", ",", "obj", ")", ":", "try", ":", "self", ".", "conn", ".", "delete_object", "(", "cont", ",", "obj", ")", "return", "True", "except", "Exception", "as", "exc", ":", "log", ".", "error", "(", "'There ...
Delete a file from Swift
[ "Delete", "a", "file", "from", "Swift" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/openstack/swift.py#L214-L226
train
saltstack/salt
salt/modules/xfs.py
_xfs_info_get_kv
def _xfs_info_get_kv(serialized): ''' Parse one line of the XFS info output. ''' # No need to know sub-elements here if serialized.startswith("="): serialized = serialized[1:].strip() serialized = serialized.replace(" = ", "=*** ").replace(" =", "=") # Keywords has no spaces, value...
python
def _xfs_info_get_kv(serialized): ''' Parse one line of the XFS info output. ''' # No need to know sub-elements here if serialized.startswith("="): serialized = serialized[1:].strip() serialized = serialized.replace(" = ", "=*** ").replace(" =", "=") # Keywords has no spaces, value...
[ "def", "_xfs_info_get_kv", "(", "serialized", ")", ":", "# No need to know sub-elements here", "if", "serialized", ".", "startswith", "(", "\"=\"", ")", ":", "serialized", "=", "serialized", "[", "1", ":", "]", ".", "strip", "(", ")", "serialized", "=", "seria...
Parse one line of the XFS info output.
[ "Parse", "one", "line", "of", "the", "XFS", "info", "output", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L71-L90
train
saltstack/salt
salt/modules/xfs.py
_parse_xfs_info
def _parse_xfs_info(data): ''' Parse output from "xfs_info" or "xfs_growfs -n". ''' ret = {} spr = re.compile(r'\s+') entry = None for line in [spr.sub(" ", l).strip().replace(", ", " ") for l in data.split("\n")]: if not line: continue nfo = _xfs_info_get_kv(line...
python
def _parse_xfs_info(data): ''' Parse output from "xfs_info" or "xfs_growfs -n". ''' ret = {} spr = re.compile(r'\s+') entry = None for line in [spr.sub(" ", l).strip().replace(", ", " ") for l in data.split("\n")]: if not line: continue nfo = _xfs_info_get_kv(line...
[ "def", "_parse_xfs_info", "(", "data", ")", ":", "ret", "=", "{", "}", "spr", "=", "re", ".", "compile", "(", "r'\\s+'", ")", "entry", "=", "None", "for", "line", "in", "[", "spr", ".", "sub", "(", "\" \"", ",", "l", ")", ".", "strip", "(", ")"...
Parse output from "xfs_info" or "xfs_growfs -n".
[ "Parse", "output", "from", "xfs_info", "or", "xfs_growfs", "-", "n", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L93-L109
train
saltstack/salt
salt/modules/xfs.py
info
def info(device): ''' Get filesystem geometry information. CLI Example: .. code-block:: bash salt '*' xfs.info /dev/sda1 ''' out = __salt__['cmd.run_all']("xfs_info {0}".format(device)) if out.get('stderr'): raise CommandExecutionError(out['stderr'].replace("xfs_info:", ""...
python
def info(device): ''' Get filesystem geometry information. CLI Example: .. code-block:: bash salt '*' xfs.info /dev/sda1 ''' out = __salt__['cmd.run_all']("xfs_info {0}".format(device)) if out.get('stderr'): raise CommandExecutionError(out['stderr'].replace("xfs_info:", ""...
[ "def", "info", "(", "device", ")", ":", "out", "=", "__salt__", "[", "'cmd.run_all'", "]", "(", "\"xfs_info {0}\"", ".", "format", "(", "device", ")", ")", "if", "out", ".", "get", "(", "'stderr'", ")", ":", "raise", "CommandExecutionError", "(", "out", ...
Get filesystem geometry information. CLI Example: .. code-block:: bash salt '*' xfs.info /dev/sda1
[ "Get", "filesystem", "geometry", "information", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L112-L125
train
saltstack/salt
salt/modules/xfs.py
_xfsdump_output
def _xfsdump_output(data): ''' Parse CLI output of the xfsdump utility. ''' out = {} summary = [] summary_block = False for line in [l.strip() for l in data.split("\n") if l.strip()]: line = re.sub("^xfsdump: ", "", line) if line.startswith("session id:"): out['S...
python
def _xfsdump_output(data): ''' Parse CLI output of the xfsdump utility. ''' out = {} summary = [] summary_block = False for line in [l.strip() for l in data.split("\n") if l.strip()]: line = re.sub("^xfsdump: ", "", line) if line.startswith("session id:"): out['S...
[ "def", "_xfsdump_output", "(", "data", ")", ":", "out", "=", "{", "}", "summary", "=", "[", "]", "summary_block", "=", "False", "for", "line", "in", "[", "l", ".", "strip", "(", ")", "for", "l", "in", "data", ".", "split", "(", "\"\\n\"", ")", "i...
Parse CLI output of the xfsdump utility.
[ "Parse", "CLI", "output", "of", "the", "xfsdump", "utility", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L128-L160
train
saltstack/salt
salt/modules/xfs.py
dump
def dump(device, destination, level=0, label=None, noerase=None): ''' Dump filesystem device to the media (file, tape etc). Required parameters: * **device**: XFS device, content of which to be dumped. * **destination**: Specifies a dump destination. Valid options are: * **label**: Label...
python
def dump(device, destination, level=0, label=None, noerase=None): ''' Dump filesystem device to the media (file, tape etc). Required parameters: * **device**: XFS device, content of which to be dumped. * **destination**: Specifies a dump destination. Valid options are: * **label**: Label...
[ "def", "dump", "(", "device", ",", "destination", ",", "level", "=", "0", ",", "label", "=", "None", ",", "noerase", "=", "None", ")", ":", "if", "not", "salt", ".", "utils", ".", "path", ".", "which", "(", "\"xfsdump\"", ")", ":", "raise", "Comman...
Dump filesystem device to the media (file, tape etc). Required parameters: * **device**: XFS device, content of which to be dumped. * **destination**: Specifies a dump destination. Valid options are: * **label**: Label of the dump. Otherwise automatically generated label is used. * **level**...
[ "Dump", "filesystem", "device", "to", "the", "media", "(", "file", "tape", "etc", ")", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L163-L208
train
saltstack/salt
salt/modules/xfs.py
_xr_to_keyset
def _xr_to_keyset(line): ''' Parse xfsrestore output keyset elements. ''' tkns = [elm for elm in line.strip().split(":", 1) if elm] if len(tkns) == 1: return "'{0}': ".format(tkns[0]) else: key, val = tkns return "'{0}': '{1}',".format(key.strip(), val.strip())
python
def _xr_to_keyset(line): ''' Parse xfsrestore output keyset elements. ''' tkns = [elm for elm in line.strip().split(":", 1) if elm] if len(tkns) == 1: return "'{0}': ".format(tkns[0]) else: key, val = tkns return "'{0}': '{1}',".format(key.strip(), val.strip())
[ "def", "_xr_to_keyset", "(", "line", ")", ":", "tkns", "=", "[", "elm", "for", "elm", "in", "line", ".", "strip", "(", ")", ".", "split", "(", "\":\"", ",", "1", ")", "if", "elm", "]", "if", "len", "(", "tkns", ")", "==", "1", ":", "return", ...
Parse xfsrestore output keyset elements.
[ "Parse", "xfsrestore", "output", "keyset", "elements", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L211-L220
train
saltstack/salt
salt/modules/xfs.py
_xfs_inventory_output
def _xfs_inventory_output(out): ''' Transform xfsrestore inventory data output to a Python dict source and evaluate it. ''' data = [] out = [line for line in out.split("\n") if line.strip()] # No inventory yet if len(out) == 1 and 'restore status' in out[0].lower(): return {'restore...
python
def _xfs_inventory_output(out): ''' Transform xfsrestore inventory data output to a Python dict source and evaluate it. ''' data = [] out = [line for line in out.split("\n") if line.strip()] # No inventory yet if len(out) == 1 and 'restore status' in out[0].lower(): return {'restore...
[ "def", "_xfs_inventory_output", "(", "out", ")", ":", "data", "=", "[", "]", "out", "=", "[", "line", "for", "line", "in", "out", ".", "split", "(", "\"\\n\"", ")", "if", "line", ".", "strip", "(", ")", "]", "# No inventory yet", "if", "len", "(", ...
Transform xfsrestore inventory data output to a Python dict source and evaluate it.
[ "Transform", "xfsrestore", "inventory", "data", "output", "to", "a", "Python", "dict", "source", "and", "evaluate", "it", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L223-L256
train
saltstack/salt
salt/modules/xfs.py
_xfs_prune_output
def _xfs_prune_output(out, uuid): ''' Parse prune output. ''' data = {} cnt = [] cutpoint = False for line in [l.strip() for l in out.split("\n") if l]: if line.startswith("-"): if cutpoint: break else: cutpoint = True ...
python
def _xfs_prune_output(out, uuid): ''' Parse prune output. ''' data = {} cnt = [] cutpoint = False for line in [l.strip() for l in out.split("\n") if l]: if line.startswith("-"): if cutpoint: break else: cutpoint = True ...
[ "def", "_xfs_prune_output", "(", "out", ",", "uuid", ")", ":", "data", "=", "{", "}", "cnt", "=", "[", "]", "cutpoint", "=", "False", "for", "line", "in", "[", "l", ".", "strip", "(", ")", "for", "l", "in", "out", ".", "split", "(", "\"\\n\"", ...
Parse prune output.
[ "Parse", "prune", "output", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L275-L297
train
saltstack/salt
salt/modules/xfs.py
prune_dump
def prune_dump(sessionid): ''' Prunes the dump session identified by the given session id. CLI Example: .. code-block:: bash salt '*' xfs.prune_dump b74a3586-e52e-4a4a-8775-c3334fa8ea2c ''' out = __salt__['cmd.run_all']("xfsinvutil -s {0} -F".format(sessionid)) _verify_run(out) ...
python
def prune_dump(sessionid): ''' Prunes the dump session identified by the given session id. CLI Example: .. code-block:: bash salt '*' xfs.prune_dump b74a3586-e52e-4a4a-8775-c3334fa8ea2c ''' out = __salt__['cmd.run_all']("xfsinvutil -s {0} -F".format(sessionid)) _verify_run(out) ...
[ "def", "prune_dump", "(", "sessionid", ")", ":", "out", "=", "__salt__", "[", "'cmd.run_all'", "]", "(", "\"xfsinvutil -s {0} -F\"", ".", "format", "(", "sessionid", ")", ")", "_verify_run", "(", "out", ")", "data", "=", "_xfs_prune_output", "(", "out", "[",...
Prunes the dump session identified by the given session id. CLI Example: .. code-block:: bash salt '*' xfs.prune_dump b74a3586-e52e-4a4a-8775-c3334fa8ea2c
[ "Prunes", "the", "dump", "session", "identified", "by", "the", "given", "session", "id", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L300-L318
train
saltstack/salt
salt/modules/xfs.py
_xfs_estimate_output
def _xfs_estimate_output(out): ''' Parse xfs_estimate output. ''' spc = re.compile(r"\s+") data = {} for line in [l for l in out.split("\n") if l.strip()][1:]: directory, bsize, blocks, megabytes, logsize = spc.sub(" ", line).split(" ") data[directory] = { 'block _siz...
python
def _xfs_estimate_output(out): ''' Parse xfs_estimate output. ''' spc = re.compile(r"\s+") data = {} for line in [l for l in out.split("\n") if l.strip()][1:]: directory, bsize, blocks, megabytes, logsize = spc.sub(" ", line).split(" ") data[directory] = { 'block _siz...
[ "def", "_xfs_estimate_output", "(", "out", ")", ":", "spc", "=", "re", ".", "compile", "(", "r\"\\s+\"", ")", "data", "=", "{", "}", "for", "line", "in", "[", "l", "for", "l", "in", "out", ".", "split", "(", "\"\\n\"", ")", "if", "l", ".", "strip...
Parse xfs_estimate output.
[ "Parse", "xfs_estimate", "output", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L360-L375
train
saltstack/salt
salt/modules/xfs.py
estimate
def estimate(path): ''' Estimate the space that an XFS filesystem will take. For each directory estimate the space that directory would take if it were copied to an XFS filesystem. Estimation does not cross mount points. CLI Example: .. code-block:: bash salt '*' xfs.estimate /pat...
python
def estimate(path): ''' Estimate the space that an XFS filesystem will take. For each directory estimate the space that directory would take if it were copied to an XFS filesystem. Estimation does not cross mount points. CLI Example: .. code-block:: bash salt '*' xfs.estimate /pat...
[ "def", "estimate", "(", "path", ")", ":", "if", "not", "os", ".", "path", ".", "exists", "(", "path", ")", ":", "raise", "CommandExecutionError", "(", "\"Path \\\"{0}\\\" was not found.\"", ".", "format", "(", "path", ")", ")", "out", "=", "__salt__", "[",...
Estimate the space that an XFS filesystem will take. For each directory estimate the space that directory would take if it were copied to an XFS filesystem. Estimation does not cross mount points. CLI Example: .. code-block:: bash salt '*' xfs.estimate /path/to/file salt '*' xfs.e...
[ "Estimate", "the", "space", "that", "an", "XFS", "filesystem", "will", "take", ".", "For", "each", "directory", "estimate", "the", "space", "that", "directory", "would", "take", "if", "it", "were", "copied", "to", "an", "XFS", "filesystem", ".", "Estimation"...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L378-L398
train
saltstack/salt
salt/modules/xfs.py
mkfs
def mkfs(device, label=None, ssize=None, noforce=None, bso=None, gmo=None, ino=None, lso=None, rso=None, nmo=None, dso=None): ''' Create a file system on the specified device. By default wipes out with force. General options: * **label**: Specify volume label. * **ssize**: Specify the fun...
python
def mkfs(device, label=None, ssize=None, noforce=None, bso=None, gmo=None, ino=None, lso=None, rso=None, nmo=None, dso=None): ''' Create a file system on the specified device. By default wipes out with force. General options: * **label**: Specify volume label. * **ssize**: Specify the fun...
[ "def", "mkfs", "(", "device", ",", "label", "=", "None", ",", "ssize", "=", "None", ",", "noforce", "=", "None", ",", "bso", "=", "None", ",", "gmo", "=", "None", ",", "ino", "=", "None", ",", "lso", "=", "None", ",", "rso", "=", "None", ",", ...
Create a file system on the specified device. By default wipes out with force. General options: * **label**: Specify volume label. * **ssize**: Specify the fundamental sector size of the filesystem. * **noforce**: Do not force create filesystem, if disk is already formatted. Filesystem geometry o...
[ "Create", "a", "file", "system", "on", "the", "specified", "device", ".", "By", "default", "wipes", "out", "with", "force", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L401-L462
train
saltstack/salt
salt/modules/xfs.py
modify
def modify(device, label=None, lazy_counting=None, uuid=None): ''' Modify parameters of an XFS filesystem. CLI Example: .. code-block:: bash salt '*' xfs.modify /dev/sda1 label='My backup' lazy_counting=False salt '*' xfs.modify /dev/sda1 uuid=False salt '*' xfs.modify /dev/sd...
python
def modify(device, label=None, lazy_counting=None, uuid=None): ''' Modify parameters of an XFS filesystem. CLI Example: .. code-block:: bash salt '*' xfs.modify /dev/sda1 label='My backup' lazy_counting=False salt '*' xfs.modify /dev/sda1 uuid=False salt '*' xfs.modify /dev/sd...
[ "def", "modify", "(", "device", ",", "label", "=", "None", ",", "lazy_counting", "=", "None", ",", "uuid", "=", "None", ")", ":", "if", "not", "label", "and", "lazy_counting", "is", "None", "and", "uuid", "is", "None", ":", "raise", "CommandExecutionErro...
Modify parameters of an XFS filesystem. CLI Example: .. code-block:: bash salt '*' xfs.modify /dev/sda1 label='My backup' lazy_counting=False salt '*' xfs.modify /dev/sda1 uuid=False salt '*' xfs.modify /dev/sda1 uuid=True
[ "Modify", "parameters", "of", "an", "XFS", "filesystem", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L465-L506
train
saltstack/salt
salt/modules/xfs.py
_get_mounts
def _get_mounts(): ''' List mounted filesystems. ''' mounts = {} with salt.utils.files.fopen("/proc/mounts") as fhr: for line in salt.utils.data.decode(fhr.readlines()): device, mntpnt, fstype, options, fs_freq, fs_passno = line.strip().split(" ") if fstype != 'xfs': ...
python
def _get_mounts(): ''' List mounted filesystems. ''' mounts = {} with salt.utils.files.fopen("/proc/mounts") as fhr: for line in salt.utils.data.decode(fhr.readlines()): device, mntpnt, fstype, options, fs_freq, fs_passno = line.strip().split(" ") if fstype != 'xfs': ...
[ "def", "_get_mounts", "(", ")", ":", "mounts", "=", "{", "}", "with", "salt", ".", "utils", ".", "files", ".", "fopen", "(", "\"/proc/mounts\"", ")", "as", "fhr", ":", "for", "line", "in", "salt", ".", "utils", ".", "data", ".", "decode", "(", "fhr...
List mounted filesystems.
[ "List", "mounted", "filesystems", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L509-L524
train
saltstack/salt
salt/modules/xfs.py
defragment
def defragment(device): ''' Defragment mounted XFS filesystem. In order to mount a filesystem, device should be properly mounted and writable. CLI Example: .. code-block:: bash salt '*' xfs.defragment /dev/sda1 ''' if device == '/': raise CommandExecutionError("Root is not...
python
def defragment(device): ''' Defragment mounted XFS filesystem. In order to mount a filesystem, device should be properly mounted and writable. CLI Example: .. code-block:: bash salt '*' xfs.defragment /dev/sda1 ''' if device == '/': raise CommandExecutionError("Root is not...
[ "def", "defragment", "(", "device", ")", ":", "if", "device", "==", "'/'", ":", "raise", "CommandExecutionError", "(", "\"Root is not a device.\"", ")", "if", "not", "_get_mounts", "(", ")", ".", "get", "(", "device", ")", ":", "raise", "CommandExecutionError"...
Defragment mounted XFS filesystem. In order to mount a filesystem, device should be properly mounted and writable. CLI Example: .. code-block:: bash salt '*' xfs.defragment /dev/sda1
[ "Defragment", "mounted", "XFS", "filesystem", ".", "In", "order", "to", "mount", "a", "filesystem", "device", "should", "be", "properly", "mounted", "and", "writable", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/xfs.py#L527-L549
train
saltstack/salt
salt/modules/hashutil.py
digest
def digest(instr, checksum='md5'): ''' Return a checksum digest for a string instr A string checksum : ``md5`` The hashing algorithm to use to generate checksums. Valid options: md5, sha256, sha512. CLI Example: .. code-block:: bash salt '*' hashutil.digest 'g...
python
def digest(instr, checksum='md5'): ''' Return a checksum digest for a string instr A string checksum : ``md5`` The hashing algorithm to use to generate checksums. Valid options: md5, sha256, sha512. CLI Example: .. code-block:: bash salt '*' hashutil.digest 'g...
[ "def", "digest", "(", "instr", ",", "checksum", "=", "'md5'", ")", ":", "hashing_funcs", "=", "{", "'md5'", ":", "__salt__", "[", "'hashutil.md5_digest'", "]", ",", "'sha256'", ":", "__salt__", "[", "'hashutil.sha256_digest'", "]", ",", "'sha512'", ":", "__s...
Return a checksum digest for a string instr A string checksum : ``md5`` The hashing algorithm to use to generate checksums. Valid options: md5, sha256, sha512. CLI Example: .. code-block:: bash salt '*' hashutil.digest 'get salted'
[ "Return", "a", "checksum", "digest", "for", "a", "string" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hashutil.py#L26-L53
train
saltstack/salt
salt/modules/hashutil.py
digest_file
def digest_file(infile, checksum='md5'): ''' Return a checksum digest for a file infile A file path checksum : ``md5`` The hashing algorithm to use to generate checksums. Wraps the :py:func:`hashutil.digest <salt.modules.hashutil.digest>` execution function. CLI Exa...
python
def digest_file(infile, checksum='md5'): ''' Return a checksum digest for a file infile A file path checksum : ``md5`` The hashing algorithm to use to generate checksums. Wraps the :py:func:`hashutil.digest <salt.modules.hashutil.digest>` execution function. CLI Exa...
[ "def", "digest_file", "(", "infile", ",", "checksum", "=", "'md5'", ")", ":", "if", "not", "__salt__", "[", "'file.file_exists'", "]", "(", "infile", ")", ":", "raise", "salt", ".", "exceptions", ".", "CommandExecutionError", "(", "\"File path '{0}' not found.\"...
Return a checksum digest for a file infile A file path checksum : ``md5`` The hashing algorithm to use to generate checksums. Wraps the :py:func:`hashutil.digest <salt.modules.hashutil.digest>` execution function. CLI Example: .. code-block:: bash salt '*' has...
[ "Return", "a", "checksum", "digest", "for", "a", "file" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hashutil.py#L56-L80
train
saltstack/salt
salt/modules/hashutil.py
base64_encodefile
def base64_encodefile(fname): ''' Read a file from the file system and return as a base64 encoded string .. versionadded:: 2016.3.0 Pillar example: .. code-block:: yaml path: to: data: | {{ salt.hashutil.base64_encodefile('/path/to/binary_file') | inde...
python
def base64_encodefile(fname): ''' Read a file from the file system and return as a base64 encoded string .. versionadded:: 2016.3.0 Pillar example: .. code-block:: yaml path: to: data: | {{ salt.hashutil.base64_encodefile('/path/to/binary_file') | inde...
[ "def", "base64_encodefile", "(", "fname", ")", ":", "encoded_f", "=", "BytesIO", "(", ")", "with", "salt", ".", "utils", ".", "files", ".", "fopen", "(", "fname", ",", "'rb'", ")", "as", "f", ":", "base64", ".", "encode", "(", "f", ",", "encoded_f", ...
Read a file from the file system and return as a base64 encoded string .. versionadded:: 2016.3.0 Pillar example: .. code-block:: yaml path: to: data: | {{ salt.hashutil.base64_encodefile('/path/to/binary_file') | indent(6) }} The :py:func:`file.decode <s...
[ "Read", "a", "file", "from", "the", "file", "system", "and", "return", "as", "a", "base64", "encoded", "string" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hashutil.py#L135-L165
train
saltstack/salt
salt/modules/hashutil.py
base64_decodefile
def base64_decodefile(instr, outfile): r''' Decode a base64-encoded string and write the result to a file .. versionadded:: 2016.3.0 CLI Example: .. code-block:: bash salt '*' hashutil.base64_decodefile instr='Z2V0IHNhbHRlZAo=' outfile='/path/to/binary_file' ''' encoded_f = Strin...
python
def base64_decodefile(instr, outfile): r''' Decode a base64-encoded string and write the result to a file .. versionadded:: 2016.3.0 CLI Example: .. code-block:: bash salt '*' hashutil.base64_decodefile instr='Z2V0IHNhbHRlZAo=' outfile='/path/to/binary_file' ''' encoded_f = Strin...
[ "def", "base64_decodefile", "(", "instr", ",", "outfile", ")", ":", "encoded_f", "=", "StringIO", "(", "instr", ")", "with", "salt", ".", "utils", ".", "files", ".", "fopen", "(", "outfile", ",", "'wb'", ")", "as", "f", ":", "base64", ".", "decode", ...
r''' Decode a base64-encoded string and write the result to a file .. versionadded:: 2016.3.0 CLI Example: .. code-block:: bash salt '*' hashutil.base64_decodefile instr='Z2V0IHNhbHRlZAo=' outfile='/path/to/binary_file'
[ "r", "Decode", "a", "base64", "-", "encoded", "string", "and", "write", "the", "result", "to", "a", "file" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hashutil.py#L184-L201
train
saltstack/salt
salt/modules/hashutil.py
hmac_signature
def hmac_signature(string, shared_secret, challenge_hmac): ''' Verify a challenging hmac signature against a string / shared-secret .. versionadded:: 2014.7.0 Returns a boolean if the verification succeeded or failed. CLI Example: .. code-block:: bash salt '*' hashutil.hmac_signatur...
python
def hmac_signature(string, shared_secret, challenge_hmac): ''' Verify a challenging hmac signature against a string / shared-secret .. versionadded:: 2014.7.0 Returns a boolean if the verification succeeded or failed. CLI Example: .. code-block:: bash salt '*' hashutil.hmac_signatur...
[ "def", "hmac_signature", "(", "string", ",", "shared_secret", ",", "challenge_hmac", ")", ":", "return", "salt", ".", "utils", ".", "hashutils", ".", "hmac_signature", "(", "string", ",", "shared_secret", ",", "challenge_hmac", ")" ]
Verify a challenging hmac signature against a string / shared-secret .. versionadded:: 2014.7.0 Returns a boolean if the verification succeeded or failed. CLI Example: .. code-block:: bash salt '*' hashutil.hmac_signature 'get salted' 'shared secret' 'eBWf9bstXg+NiP5AOwppB5HMvZiYMPzEM9W5YMm...
[ "Verify", "a", "challenging", "hmac", "signature", "against", "a", "string", "/", "shared", "-", "secret" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hashutil.py#L249-L263
train
saltstack/salt
salt/modules/hashutil.py
github_signature
def github_signature(string, shared_secret, challenge_hmac): ''' Verify a challenging hmac signature against a string / shared-secret for github webhooks. .. versionadded:: 2017.7.0 Returns a boolean if the verification succeeded or failed. CLI Example: .. code-block:: bash salt...
python
def github_signature(string, shared_secret, challenge_hmac): ''' Verify a challenging hmac signature against a string / shared-secret for github webhooks. .. versionadded:: 2017.7.0 Returns a boolean if the verification succeeded or failed. CLI Example: .. code-block:: bash salt...
[ "def", "github_signature", "(", "string", ",", "shared_secret", ",", "challenge_hmac", ")", ":", "msg", "=", "string", "key", "=", "shared_secret", "hashtype", ",", "challenge", "=", "challenge_hmac", ".", "split", "(", "'='", ")", "if", "six", ".", "text_ty...
Verify a challenging hmac signature against a string / shared-secret for github webhooks. .. versionadded:: 2017.7.0 Returns a boolean if the verification succeeded or failed. CLI Example: .. code-block:: bash salt '*' hashutil.github_signature '{"ref":....} ' 'shared secret' 'sha1=bc65...
[ "Verify", "a", "challenging", "hmac", "signature", "against", "a", "string", "/", "shared", "-", "secret", "for", "github", "webhooks", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hashutil.py#L266-L288
train
saltstack/salt
salt/thorium/wheel.py
cmd
def cmd( name, fun=None, arg=(), **kwargs): ''' Execute a runner asynchronous: USAGE: .. code-block:: yaml run_cloud: wheel.cmd: - fun: key.delete - match: minion_id ''' ret = {'name': name, 'changes': {}, ...
python
def cmd( name, fun=None, arg=(), **kwargs): ''' Execute a runner asynchronous: USAGE: .. code-block:: yaml run_cloud: wheel.cmd: - fun: key.delete - match: minion_id ''' ret = {'name': name, 'changes': {}, ...
[ "def", "cmd", "(", "name", ",", "fun", "=", "None", ",", "arg", "=", "(", ")", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'changes'", ":", "{", "}", ",", "'comment'", ":", "''", ",", "'result'", ":", "Tru...
Execute a runner asynchronous: USAGE: .. code-block:: yaml run_cloud: wheel.cmd: - fun: key.delete - match: minion_id
[ "Execute", "a", "runner", "asynchronous", ":" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/thorium/wheel.py#L11-L39
train
saltstack/salt
salt/modules/inspector.py
_
def _(module): ''' Get inspectlib module for the lazy loader. :param module: :return: ''' mod = None # pylint: disable=E0598 try: # importlib is in Python 2.7+ and 3+ import importlib mod = importlib.import_module("salt.modules.inspectlib.{0}".format(module)) ...
python
def _(module): ''' Get inspectlib module for the lazy loader. :param module: :return: ''' mod = None # pylint: disable=E0598 try: # importlib is in Python 2.7+ and 3+ import importlib mod = importlib.import_module("salt.modules.inspectlib.{0}".format(module)) ...
[ "def", "_", "(", "module", ")", ":", "mod", "=", "None", "# pylint: disable=E0598", "try", ":", "# importlib is in Python 2.7+ and 3+", "import", "importlib", "mod", "=", "importlib", ".", "import_module", "(", "\"salt.modules.inspectlib.{0}\"", ".", "format", "(", ...
Get inspectlib module for the lazy loader. :param module: :return:
[ "Get", "inspectlib", "module", "for", "the", "lazy", "loader", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/inspector.py#L45-L68
train
saltstack/salt
salt/modules/inspector.py
inspect
def inspect(mode='all', priority=19, **kwargs): ''' Start node inspection and save the data to the database for further query. Parameters: * **mode**: Clarify inspection mode: configuration, payload, all (default) payload * **filter**: Comma-separated directories to track payload. ...
python
def inspect(mode='all', priority=19, **kwargs): ''' Start node inspection and save the data to the database for further query. Parameters: * **mode**: Clarify inspection mode: configuration, payload, all (default) payload * **filter**: Comma-separated directories to track payload. ...
[ "def", "inspect", "(", "mode", "=", "'all'", ",", "priority", "=", "19", ",", "*", "*", "kwargs", ")", ":", "collector", "=", "_", "(", "\"collector\"", ")", "try", ":", "return", "collector", ".", "Inspector", "(", "cachedir", "=", "__opts__", "[", ...
Start node inspection and save the data to the database for further query. Parameters: * **mode**: Clarify inspection mode: configuration, payload, all (default) payload * **filter**: Comma-separated directories to track payload. * **priority**: (advanced) Set priority of the inspection. D...
[ "Start", "node", "inspection", "and", "save", "the", "data", "to", "the", "database", "for", "further", "query", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/inspector.py#L71-L103
train
saltstack/salt
salt/modules/inspector.py
query
def query(*args, **kwargs): ''' Query the node for specific information. Parameters: * **scope**: Specify scope of the query. * **System**: Return system data. * **Software**: Return software information. * **Services**: Return known services. * **Identity**: Return use...
python
def query(*args, **kwargs): ''' Query the node for specific information. Parameters: * **scope**: Specify scope of the query. * **System**: Return system data. * **Software**: Return software information. * **Services**: Return known services. * **Identity**: Return use...
[ "def", "query", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "query", "=", "_", "(", "\"query\"", ")", "try", ":", "return", "query", ".", "Query", "(", "kwargs", ".", "get", "(", "'scope'", ")", ",", "cachedir", "=", "__opts__", "[", "'c...
Query the node for specific information. Parameters: * **scope**: Specify scope of the query. * **System**: Return system data. * **Software**: Return software information. * **Services**: Return known services. * **Identity**: Return user accounts information for this system. ...
[ "Query", "the", "node", "for", "specific", "information", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/inspector.py#L106-L168
train
saltstack/salt
salt/modules/inspector.py
build
def build(format='qcow2', path='/tmp/'): ''' Build an image from a current system description. The image is a system image can be output in bootable ISO or QCOW2 formats. Node uses the image building library Kiwi to perform the actual build. Parameters: * **format**: Specifies output format: ...
python
def build(format='qcow2', path='/tmp/'): ''' Build an image from a current system description. The image is a system image can be output in bootable ISO or QCOW2 formats. Node uses the image building library Kiwi to perform the actual build. Parameters: * **format**: Specifies output format: ...
[ "def", "build", "(", "format", "=", "'qcow2'", ",", "path", "=", "'/tmp/'", ")", ":", "try", ":", "_", "(", "\"collector\"", ")", ".", "Inspector", "(", "cachedir", "=", "__opts__", "[", "'cachedir'", "]", ",", "piddir", "=", "os", ".", "path", ".", ...
Build an image from a current system description. The image is a system image can be output in bootable ISO or QCOW2 formats. Node uses the image building library Kiwi to perform the actual build. Parameters: * **format**: Specifies output format: "qcow2" or "iso. Default: `qcow2`. * **path**: Sp...
[ "Build", "an", "image", "from", "a", "current", "system", "description", ".", "The", "image", "is", "a", "system", "image", "can", "be", "output", "in", "bootable", "ISO", "or", "QCOW2", "formats", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/inspector.py#L171-L198
train
saltstack/salt
salt/modules/inspector.py
export
def export(local=False, path="/tmp", format='qcow2'): ''' Export an image description for Kiwi. Parameters: * **local**: Specifies True or False if the export has to be in the local file. Default: False. * **path**: If `local=True`, then specifies the path where file with the Kiwi description is w...
python
def export(local=False, path="/tmp", format='qcow2'): ''' Export an image description for Kiwi. Parameters: * **local**: Specifies True or False if the export has to be in the local file. Default: False. * **path**: If `local=True`, then specifies the path where file with the Kiwi description is w...
[ "def", "export", "(", "local", "=", "False", ",", "path", "=", "\"/tmp\"", ",", "format", "=", "'qcow2'", ")", ":", "if", "getpass", ".", "getuser", "(", ")", "!=", "'root'", ":", "raise", "CommandExecutionError", "(", "'In order to export system, the minion s...
Export an image description for Kiwi. Parameters: * **local**: Specifies True or False if the export has to be in the local file. Default: False. * **path**: If `local=True`, then specifies the path where file with the Kiwi description is written. Default: `/tmp`. CLI Example: .....
[ "Export", "an", "image", "description", "for", "Kiwi", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/inspector.py#L201-L227
train
saltstack/salt
salt/modules/inspector.py
snapshots
def snapshots(): ''' List current description snapshots. CLI Example: .. code-block:: bash salt myminion inspector.snapshots ''' try: return _("collector").Inspector(cachedir=__opts__['cachedir'], piddir=os.path.dirname(__opts__['pidfile...
python
def snapshots(): ''' List current description snapshots. CLI Example: .. code-block:: bash salt myminion inspector.snapshots ''' try: return _("collector").Inspector(cachedir=__opts__['cachedir'], piddir=os.path.dirname(__opts__['pidfile...
[ "def", "snapshots", "(", ")", ":", "try", ":", "return", "_", "(", "\"collector\"", ")", ".", "Inspector", "(", "cachedir", "=", "__opts__", "[", "'cachedir'", "]", ",", "piddir", "=", "os", ".", "path", ".", "dirname", "(", "__opts__", "[", "'pidfile'...
List current description snapshots. CLI Example: .. code-block:: bash salt myminion inspector.snapshots
[ "List", "current", "description", "snapshots", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/inspector.py#L230-L247
train
saltstack/salt
salt/modules/inspector.py
delete
def delete(all=False, *databases): ''' Remove description snapshots from the system. ::parameter: all. Default: False. Remove all snapshots, if set to True. CLI example: .. code-block:: bash salt myminion inspector.delete <ID> <ID1> <ID2>.. salt myminion inspector.delete all=True...
python
def delete(all=False, *databases): ''' Remove description snapshots from the system. ::parameter: all. Default: False. Remove all snapshots, if set to True. CLI example: .. code-block:: bash salt myminion inspector.delete <ID> <ID1> <ID2>.. salt myminion inspector.delete all=True...
[ "def", "delete", "(", "all", "=", "False", ",", "*", "databases", ")", ":", "if", "not", "all", "and", "not", "databases", ":", "raise", "CommandExecutionError", "(", "'At least one database ID required.'", ")", "try", ":", "ret", "=", "dict", "(", ")", "i...
Remove description snapshots from the system. ::parameter: all. Default: False. Remove all snapshots, if set to True. CLI example: .. code-block:: bash salt myminion inspector.delete <ID> <ID1> <ID2>.. salt myminion inspector.delete all=True
[ "Remove", "description", "snapshots", "from", "the", "system", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/inspector.py#L250-L277
train
saltstack/salt
salt/engines/napalm_syslog.py
start
def start(transport='zmq', address='0.0.0.0', port=49017, auth_address='0.0.0.0', auth_port=49018, disable_security=False, certificate=None, os_whitelist=None, os_blacklist=None, error_whitelist=None, error_blacklist=Non...
python
def start(transport='zmq', address='0.0.0.0', port=49017, auth_address='0.0.0.0', auth_port=49018, disable_security=False, certificate=None, os_whitelist=None, os_blacklist=None, error_whitelist=None, error_blacklist=Non...
[ "def", "start", "(", "transport", "=", "'zmq'", ",", "address", "=", "'0.0.0.0'", ",", "port", "=", "49017", ",", "auth_address", "=", "'0.0.0.0'", ",", "auth_port", "=", "49018", ",", "disable_security", "=", "False", ",", "certificate", "=", "None", ",",...
Listen to napalm-logs and publish events into the Salt event bus. transport: ``zmq`` Choose the desired transport. .. note:: Currently ``zmq`` is the only valid option. address: ``0.0.0.0`` The address of the publisher, as configured on napalm-logs. port: ``49017`` ...
[ "Listen", "to", "napalm", "-", "logs", "and", "publish", "events", "into", "the", "Salt", "event", "bus", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/engines/napalm_syslog.py#L248-L378
train
saltstack/salt
salt/states/salt_proxy.py
configure_proxy
def configure_proxy(name, proxyname='p8000', start=True): ''' Create the salt proxy file and start the proxy process if required Parameters: name: The name of this state proxyname: Name to be used for this proxy (should match entries in pillar) start: ...
python
def configure_proxy(name, proxyname='p8000', start=True): ''' Create the salt proxy file and start the proxy process if required Parameters: name: The name of this state proxyname: Name to be used for this proxy (should match entries in pillar) start: ...
[ "def", "configure_proxy", "(", "name", ",", "proxyname", "=", "'p8000'", ",", "start", "=", "True", ")", ":", "ret", "=", "__salt__", "[", "'salt_proxy.configure_proxy'", "]", "(", "proxyname", ",", "start", "=", "start", ")", "ret", ".", "update", "(", ...
Create the salt proxy file and start the proxy process if required Parameters: name: The name of this state proxyname: Name to be used for this proxy (should match entries in pillar) start: Boolean indicating if the process should be started Exam...
[ "Create", "the", "salt", "proxy", "file", "and", "start", "the", "proxy", "process", "if", "required" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/salt_proxy.py#L33-L62
train
saltstack/salt
salt/modules/hadoop.py
_hadoop_cmd
def _hadoop_cmd(module, command, *args): ''' Hadoop/hdfs command wrapper As Hadoop command has been deprecated this module will default to use hdfs command and fall back to hadoop if it is not found In order to prevent random execution the module name is checked Follows hadoop ...
python
def _hadoop_cmd(module, command, *args): ''' Hadoop/hdfs command wrapper As Hadoop command has been deprecated this module will default to use hdfs command and fall back to hadoop if it is not found In order to prevent random execution the module name is checked Follows hadoop ...
[ "def", "_hadoop_cmd", "(", "module", ",", "command", ",", "*", "args", ")", ":", "tool", "=", "'hadoop'", "if", "salt", ".", "utils", ".", "path", ".", "which", "(", "'hdfs'", ")", ":", "tool", "=", "'hdfs'", "out", "=", "None", "if", "module", "an...
Hadoop/hdfs command wrapper As Hadoop command has been deprecated this module will default to use hdfs command and fall back to hadoop if it is not found In order to prevent random execution the module name is checked Follows hadoop command template: hadoop module -command args ...
[ "Hadoop", "/", "hdfs", "command", "wrapper" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hadoop.py#L30-L57
train
saltstack/salt
salt/modules/hadoop.py
dfs_present
def dfs_present(path): ''' Check if a file or directory is present on the distributed FS. CLI Example: .. code-block:: bash salt '*' hadoop.dfs_present /some_random_file Returns True if the file is present ''' cmd_return = _hadoop_cmd('dfs', 'stat', path) match = 'No such fil...
python
def dfs_present(path): ''' Check if a file or directory is present on the distributed FS. CLI Example: .. code-block:: bash salt '*' hadoop.dfs_present /some_random_file Returns True if the file is present ''' cmd_return = _hadoop_cmd('dfs', 'stat', path) match = 'No such fil...
[ "def", "dfs_present", "(", "path", ")", ":", "cmd_return", "=", "_hadoop_cmd", "(", "'dfs'", ",", "'stat'", ",", "path", ")", "match", "=", "'No such file or directory'", "return", "False", "if", "match", "in", "cmd_return", "else", "True" ]
Check if a file or directory is present on the distributed FS. CLI Example: .. code-block:: bash salt '*' hadoop.dfs_present /some_random_file Returns True if the file is present
[ "Check", "if", "a", "file", "or", "directory", "is", "present", "on", "the", "distributed", "FS", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hadoop.py#L115-L129
train
saltstack/salt
salt/modules/hadoop.py
dfs_absent
def dfs_absent(path): ''' Check if a file or directory is absent on the distributed FS. CLI Example: .. code-block:: bash salt '*' hadoop.dfs_absent /some_random_file Returns True if the file is absent ''' cmd_return = _hadoop_cmd('dfs', 'stat', path) match = 'No such file or...
python
def dfs_absent(path): ''' Check if a file or directory is absent on the distributed FS. CLI Example: .. code-block:: bash salt '*' hadoop.dfs_absent /some_random_file Returns True if the file is absent ''' cmd_return = _hadoop_cmd('dfs', 'stat', path) match = 'No such file or...
[ "def", "dfs_absent", "(", "path", ")", ":", "cmd_return", "=", "_hadoop_cmd", "(", "'dfs'", ",", "'stat'", ",", "path", ")", "match", "=", "'No such file or directory'", "return", "True", "if", "match", "in", "cmd_return", "else", "False" ]
Check if a file or directory is absent on the distributed FS. CLI Example: .. code-block:: bash salt '*' hadoop.dfs_absent /some_random_file Returns True if the file is absent
[ "Check", "if", "a", "file", "or", "directory", "is", "absent", "on", "the", "distributed", "FS", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/hadoop.py#L132-L146
train
saltstack/salt
salt/utils/timed_subprocess.py
TimedProc.run
def run(self): ''' wait for subprocess to terminate and return subprocess' return code. If timeout is reached, throw TimedProcTimeoutError ''' def receive(): if self.with_communicate: self.stdout, self.stderr = self.process.communicate(input=self.stdin...
python
def run(self): ''' wait for subprocess to terminate and return subprocess' return code. If timeout is reached, throw TimedProcTimeoutError ''' def receive(): if self.with_communicate: self.stdout, self.stderr = self.process.communicate(input=self.stdin...
[ "def", "run", "(", "self", ")", ":", "def", "receive", "(", ")", ":", "if", "self", ".", "with_communicate", ":", "self", ".", "stdout", ",", "self", ".", "stderr", "=", "self", ".", "process", ".", "communicate", "(", "input", "=", "self", ".", "s...
wait for subprocess to terminate and return subprocess' return code. If timeout is reached, throw TimedProcTimeoutError
[ "wait", "for", "subprocess", "to", "terminate", "and", "return", "subprocess", "return", "code", ".", "If", "timeout", "is", "reached", "throw", "TimedProcTimeoutError" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/timed_subprocess.py#L82-L113
train
saltstack/salt
salt/modules/boto_kinesis.py
_get_full_stream
def _get_full_stream(stream_name, region=None, key=None, keyid=None, profile=None): ''' Get complete stream info from AWS, via describe_stream, including all shards. CLI example:: salt myminion boto_kinesis._get_full_stream my_stream region=us-east-1 ''' conn = _get_conn(region=region, key...
python
def _get_full_stream(stream_name, region=None, key=None, keyid=None, profile=None): ''' Get complete stream info from AWS, via describe_stream, including all shards. CLI example:: salt myminion boto_kinesis._get_full_stream my_stream region=us-east-1 ''' conn = _get_conn(region=region, key...
[ "def", "_get_full_stream", "(", "stream_name", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "region", ",", "key", "=", "key", ",",...
Get complete stream info from AWS, via describe_stream, including all shards. CLI example:: salt myminion boto_kinesis._get_full_stream my_stream region=us-east-1
[ "Get", "complete", "stream", "info", "from", "AWS", "via", "describe_stream", "including", "all", "shards", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L98-L121
train
saltstack/salt
salt/modules/boto_kinesis.py
get_stream_when_active
def get_stream_when_active(stream_name, region=None, key=None, keyid=None, profile=None): ''' Get complete stream info from AWS, returning only when the stream is in the ACTIVE state. Continues to retry when stream is updating or creating. If the stream is deleted during retries, the loop will catch the...
python
def get_stream_when_active(stream_name, region=None, key=None, keyid=None, profile=None): ''' Get complete stream info from AWS, returning only when the stream is in the ACTIVE state. Continues to retry when stream is updating or creating. If the stream is deleted during retries, the loop will catch the...
[ "def", "get_stream_when_active", "(", "stream_name", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "region", ",", "key", "=", "key", ...
Get complete stream info from AWS, returning only when the stream is in the ACTIVE state. Continues to retry when stream is updating or creating. If the stream is deleted during retries, the loop will catch the error and break. CLI example:: salt myminion boto_kinesis.get_stream_when_active my_str...
[ "Get", "complete", "stream", "info", "from", "AWS", "returning", "only", "when", "the", "stream", "is", "in", "the", "ACTIVE", "state", ".", "Continues", "to", "retry", "when", "stream", "is", "updating", "or", "creating", ".", "If", "the", "stream", "is",...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L124-L153
train
saltstack/salt
salt/modules/boto_kinesis.py
exists
def exists(stream_name, region=None, key=None, keyid=None, profile=None): ''' Check if the stream exists. Returns False and the error if it does not. CLI example:: salt myminion boto_kinesis.exists my_stream region=us-east-1 ''' conn = _get_conn(region=region, key=key, keyid=keyid, profile...
python
def exists(stream_name, region=None, key=None, keyid=None, profile=None): ''' Check if the stream exists. Returns False and the error if it does not. CLI example:: salt myminion boto_kinesis.exists my_stream region=us-east-1 ''' conn = _get_conn(region=region, key=key, keyid=keyid, profile...
[ "def", "exists", "(", "stream_name", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "region", ",", "key", "=", "key", ",", "keyid"...
Check if the stream exists. Returns False and the error if it does not. CLI example:: salt myminion boto_kinesis.exists my_stream region=us-east-1
[ "Check", "if", "the", "stream", "exists", ".", "Returns", "False", "and", "the", "error", "if", "it", "does", "not", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L156-L174
train
saltstack/salt
salt/modules/boto_kinesis.py
create_stream
def create_stream(stream_name, num_shards, region=None, key=None, keyid=None, profile=None): ''' Create a stream with name stream_name and initial number of shards num_shards. CLI example:: salt myminion boto_kinesis.create_stream my_stream N region=us-east-1 ''' conn = _get_conn(region=re...
python
def create_stream(stream_name, num_shards, region=None, key=None, keyid=None, profile=None): ''' Create a stream with name stream_name and initial number of shards num_shards. CLI example:: salt myminion boto_kinesis.create_stream my_stream N region=us-east-1 ''' conn = _get_conn(region=re...
[ "def", "create_stream", "(", "stream_name", ",", "num_shards", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "region", ",", "key", ...
Create a stream with name stream_name and initial number of shards num_shards. CLI example:: salt myminion boto_kinesis.create_stream my_stream N region=us-east-1
[ "Create", "a", "stream", "with", "name", "stream_name", "and", "initial", "number", "of", "shards", "num_shards", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L177-L192
train
saltstack/salt
salt/modules/boto_kinesis.py
delete_stream
def delete_stream(stream_name, region=None, key=None, keyid=None, profile=None): ''' Delete the stream with name stream_name. This cannot be undone! All data will be lost!! CLI example:: salt myminion boto_kinesis.delete_stream my_stream region=us-east-1 ''' conn = _get_conn(region=region,...
python
def delete_stream(stream_name, region=None, key=None, keyid=None, profile=None): ''' Delete the stream with name stream_name. This cannot be undone! All data will be lost!! CLI example:: salt myminion boto_kinesis.delete_stream my_stream region=us-east-1 ''' conn = _get_conn(region=region,...
[ "def", "delete_stream", "(", "stream_name", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "region", ",", "key", "=", "key", ",", ...
Delete the stream with name stream_name. This cannot be undone! All data will be lost!! CLI example:: salt myminion boto_kinesis.delete_stream my_stream region=us-east-1
[ "Delete", "the", "stream", "with", "name", "stream_name", ".", "This", "cannot", "be", "undone!", "All", "data", "will", "be", "lost!!" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L195-L209
train
saltstack/salt
salt/modules/boto_kinesis.py
increase_stream_retention_period
def increase_stream_retention_period(stream_name, retention_hours, region=None, key=None, keyid=None, profile=None): ''' Increase stream retention period to retention_hours CLI example:: salt myminion boto_kinesis.increase_stream_retention_period my_stream N re...
python
def increase_stream_retention_period(stream_name, retention_hours, region=None, key=None, keyid=None, profile=None): ''' Increase stream retention period to retention_hours CLI example:: salt myminion boto_kinesis.increase_stream_retention_period my_stream N re...
[ "def", "increase_stream_retention_period", "(", "stream_name", ",", "retention_hours", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "reg...
Increase stream retention period to retention_hours CLI example:: salt myminion boto_kinesis.increase_stream_retention_period my_stream N region=us-east-1
[ "Increase", "stream", "retention", "period", "to", "retention_hours" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L212-L228
train
saltstack/salt
salt/modules/boto_kinesis.py
enable_enhanced_monitoring
def enable_enhanced_monitoring(stream_name, metrics, region=None, key=None, keyid=None, profile=None): ''' Enable enhanced monitoring for the specified shard-level metrics on stream stream_name CLI example:: salt myminion boto_kinesis.enable_enhanced_monitoring my_st...
python
def enable_enhanced_monitoring(stream_name, metrics, region=None, key=None, keyid=None, profile=None): ''' Enable enhanced monitoring for the specified shard-level metrics on stream stream_name CLI example:: salt myminion boto_kinesis.enable_enhanced_monitoring my_st...
[ "def", "enable_enhanced_monitoring", "(", "stream_name", ",", "metrics", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "region", ",", ...
Enable enhanced monitoring for the specified shard-level metrics on stream stream_name CLI example:: salt myminion boto_kinesis.enable_enhanced_monitoring my_stream ["metrics", "to", "enable"] region=us-east-1
[ "Enable", "enhanced", "monitoring", "for", "the", "specified", "shard", "-", "level", "metrics", "on", "stream", "stream_name" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L250-L267
train
saltstack/salt
salt/modules/boto_kinesis.py
get_info_for_reshard
def get_info_for_reshard(stream_details): """ Collect some data: number of open shards, key range, etc. Modifies stream_details to add a sorted list of OpenShards. Returns (min_hash_key, max_hash_key, stream_details) CLI example:: salt myminion boto_kinesis.get_info_for_reshard existing_st...
python
def get_info_for_reshard(stream_details): """ Collect some data: number of open shards, key range, etc. Modifies stream_details to add a sorted list of OpenShards. Returns (min_hash_key, max_hash_key, stream_details) CLI example:: salt myminion boto_kinesis.get_info_for_reshard existing_st...
[ "def", "get_info_for_reshard", "(", "stream_details", ")", ":", "min_hash_key", "=", "0", "max_hash_key", "=", "0", "stream_details", "[", "\"OpenShards\"", "]", "=", "[", "]", "for", "shard", "in", "stream_details", "[", "\"Shards\"", "]", ":", "shard_id", "=...
Collect some data: number of open shards, key range, etc. Modifies stream_details to add a sorted list of OpenShards. Returns (min_hash_key, max_hash_key, stream_details) CLI example:: salt myminion boto_kinesis.get_info_for_reshard existing_stream_details
[ "Collect", "some", "data", ":", "number", "of", "open", "shards", "key", "range", "etc", ".", "Modifies", "stream_details", "to", "add", "a", "sorted", "list", "of", "OpenShards", ".", "Returns", "(", "min_hash_key", "max_hash_key", "stream_details", ")" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L290-L320
train
saltstack/salt
salt/modules/boto_kinesis.py
reshard
def reshard(stream_name, desired_size, force=False, region=None, key=None, keyid=None, profile=None): """ Reshard a kinesis stream. Each call to this function will wait until the stream is ACTIVE, then make a single split or merge operation. This function decides where to split or merge wit...
python
def reshard(stream_name, desired_size, force=False, region=None, key=None, keyid=None, profile=None): """ Reshard a kinesis stream. Each call to this function will wait until the stream is ACTIVE, then make a single split or merge operation. This function decides where to split or merge wit...
[ "def", "reshard", "(", "stream_name", ",", "desired_size", ",", "force", "=", "False", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "="...
Reshard a kinesis stream. Each call to this function will wait until the stream is ACTIVE, then make a single split or merge operation. This function decides where to split or merge with the assumption that the ultimate goal is a balanced partition space. For safety, user must past in force=True; otherwis...
[ "Reshard", "a", "kinesis", "stream", ".", "Each", "call", "to", "this", "function", "will", "wait", "until", "the", "stream", "is", "ACTIVE", "then", "make", "a", "single", "split", "or", "merge", "operation", ".", "This", "function", "decides", "where", "...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L341-L449
train
saltstack/salt
salt/modules/boto_kinesis.py
list_streams
def list_streams(region=None, key=None, keyid=None, profile=None): ''' Return a list of all streams visible to the current account CLI example: .. code-block:: bash salt myminion boto_kinesis.list_streams ''' conn = _get_conn(region=region, key=key, keyid=keyid, profile=profile) s...
python
def list_streams(region=None, key=None, keyid=None, profile=None): ''' Return a list of all streams visible to the current account CLI example: .. code-block:: bash salt myminion boto_kinesis.list_streams ''' conn = _get_conn(region=region, key=key, keyid=keyid, profile=profile) s...
[ "def", "list_streams", "(", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "conn", "=", "_get_conn", "(", "region", "=", "region", ",", "key", "=", "key", ",", "keyid", "=", "keyid"...
Return a list of all streams visible to the current account CLI example: .. code-block:: bash salt myminion boto_kinesis.list_streams
[ "Return", "a", "list", "of", "all", "streams", "visible", "to", "the", "current", "account" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L452-L473
train
saltstack/salt
salt/modules/boto_kinesis.py
_get_next_open_shard
def _get_next_open_shard(stream_details, shard_id): ''' Return the next open shard after shard_id CLI example:: salt myminion boto_kinesis._get_next_open_shard existing_stream_details shard_id ''' found = False for shard in stream_details["OpenShards"]: current_shard_id = shard...
python
def _get_next_open_shard(stream_details, shard_id): ''' Return the next open shard after shard_id CLI example:: salt myminion boto_kinesis._get_next_open_shard existing_stream_details shard_id ''' found = False for shard in stream_details["OpenShards"]: current_shard_id = shard...
[ "def", "_get_next_open_shard", "(", "stream_details", ",", "shard_id", ")", ":", "found", "=", "False", "for", "shard", "in", "stream_details", "[", "\"OpenShards\"", "]", ":", "current_shard_id", "=", "shard", "[", "\"ShardId\"", "]", "if", "current_shard_id", ...
Return the next open shard after shard_id CLI example:: salt myminion boto_kinesis._get_next_open_shard existing_stream_details shard_id
[ "Return", "the", "next", "open", "shard", "after", "shard_id" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L476-L491
train
saltstack/salt
salt/modules/boto_kinesis.py
_execute_with_retries
def _execute_with_retries(conn, function, **kwargs): ''' Retry if we're rate limited by AWS or blocked by another call. Give up and return error message if resource not found or argument is invalid. conn The connection established by the calling method via _get_conn() function The ...
python
def _execute_with_retries(conn, function, **kwargs): ''' Retry if we're rate limited by AWS or blocked by another call. Give up and return error message if resource not found or argument is invalid. conn The connection established by the calling method via _get_conn() function The ...
[ "def", "_execute_with_retries", "(", "conn", ",", "function", ",", "*", "*", "kwargs", ")", ":", "r", "=", "{", "}", "max_attempts", "=", "18", "max_retry_delay", "=", "10", "for", "attempt", "in", "range", "(", "max_attempts", ")", ":", "log", ".", "i...
Retry if we're rate limited by AWS or blocked by another call. Give up and return error message if resource not found or argument is invalid. conn The connection established by the calling method via _get_conn() function The function to call on conn. i.e. create_stream **kwargs ...
[ "Retry", "if", "we", "re", "rate", "limited", "by", "AWS", "or", "blocked", "by", "another", "call", ".", "Give", "up", "and", "return", "error", "message", "if", "resource", "not", "found", "or", "argument", "is", "invalid", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/boto_kinesis.py#L494-L543
train