text
stringlengths
81
112k
Return all installed services CLI Example: .. code-block:: bash salt '*' service.get_all def get_all(): ''' Return all installed services CLI Example: .. code-block:: bash salt '*' service.get_all ''' cmd = 'launchctl list' service_lines = [ line for l...
Return the status for a service via systemd. If the name contains globbing, a dict mapping service name to True/False values is returned. .. versionchanged:: 2018.3.0 The service name can now be a glob (e.g. ``salt*``) Args: name (str): The name of the service to check runas (s...
Start the specified service CLI Example: .. code-block:: bash salt '*' service.start <service label> salt '*' service.start org.ntp.ntpd salt '*' service.start /System/Library/LaunchDaemons/org.ntp.ntpd.plist def start(job_label, runas=None): ''' Start the specified service ...
Restart the named service CLI Example: .. code-block:: bash salt '*' service.restart <service label> def restart(job_label, runas=None): ''' Restart the named service CLI Example: .. code-block:: bash salt '*' service.restart <service label> ''' stop(job_label, run...
Return True if the named service is enabled, false otherwise CLI Example: .. code-block:: bash salt '*' service.enabled <service label> def enabled(job_label, runas=None): ''' Return True if the named service is enabled, false otherwise CLI Example: .. code-block:: bash sa...
Retrieve the API params from the config file. def _get_api_params(api_url=None, api_version=None, api_key=None): ''' Retrieve the API params from the config file. ''' mandrill_cfg = __salt__['config.merge']('mandrill') if not mandrill_cfg: mandrill_cf...
Build the API URL. def _get_url(method, api_url, api_version): ''' Build the API URL. ''' return '{url}/{version}/{method}.json'.format(url=api_url, version=float(api_version), ...
Make the HTTP request and return the body as python object. def _http_request(url, headers=None, data=None): ''' Make the HTTP request and return the body as python object. ''' if not headers: headers = _get_headers() session = requests.session() log....
Send out the email using the details from the ``message`` argument. message The information on the message to send. This argument must be sent as dictionary with at fields as specified in the Mandrill API documentation. asynchronous: ``False`` Enable a background sending mode t...
Send a command to the modjk loadbalancer The minion need to be able to publish the commands to the load balancer cmd: worker_stop - won't get any traffic from the lbn worker_activate - activate the worker worker_disable - will get traffic only for current sessions def _send_command(cmd...
Check if the worker is in `activation` state in the targeted load balancers The function will return the following dictionary: result - False if no server returned from the published command errors - list of servers that couldn't find the worker wrong_state - list of servers that the worker...
Wrapper function for the stop/disable/activate functions def _talk2modjk(name, lbn, target, action, profile='default', tgt_type='glob'): ''' Wrapper function for the stop/disable/activate functions ''' ret = {'name': name, 'result': True, 'changes': {}, 'comment': ''} ...
.. versionchanged:: 2017.7.0 The ``expr_form`` argument has been renamed to ``tgt_type``, earlier releases must use ``expr_form``. Stop the named worker from the lbn load balancers at the targeted minions The worker won't get any traffic from the lbn Example: .. code-block:: yaml ...
.. versionchanged:: 2017.7.0 The ``expr_form`` argument has been renamed to ``tgt_type``, earlier releases must use ``expr_form``. Activate the named worker from the lbn load balancers at the targeted minions Example: .. code-block:: yaml disable-before-deploy: modj...
.. versionchanged:: 2017.7.0 The ``expr_form`` argument has been renamed to ``tgt_type``, earlier releases must use ``expr_form``. Disable the named worker from the lbn load balancers at the targeted minions. The worker will get traffic only for current sessions and won't get new ones. ...
Recursively look up all grains in the metadata server def _search(prefix="latest/"): ''' Recursively look up all grains in the metadata server ''' ret = {} linedata = http.query(os.path.join(HOST, prefix), headers=True) if 'body' not in linedata: return ret body = salt.utils.stringu...
Determine whether a named value exists in the grains dictionary. Given a grains dictionary that contains the following structure:: {'pkg': {'apache': 'httpd'}} One would determine if the apache key in the pkg dict exists by:: pkg:apache CLI Example: .. code-block:: bash sa...
Return one or more grains CLI Example: .. code-block:: bash salt '*' grains.item os salt '*' grains.item os osrelease oscodename Sanitized CLI Example: .. code-block:: bash salt '*' grains.item host sanitize=True def item(*args, **kwargs): ''' Return one or more gr...
.. versionadded:: 0.17.0 Look up the given grain in a given dictionary for the current OS and return the result Although this may occasionally be useful at the CLI, the primary intent of this function is for use in Jinja to make short work of creating lookup tables for OS-specific data. For exampl...
Ensure VPC exists. name Name of the VPC. cidr_block The range of IPs in CIDR format, for example: 10.0.0.0/24. Block size must be between /16 and /28 netmask. instance_tenancy Instances launched in this VPC will be ingle-tenant or dedicated hardware. dns_suppo...
Ensure VPC with passed properties is absent. name Name of the VPC. tags A list of tags. All tags must match. region Region to connect to. key Secret key to be used. keyid Access key to be used. profile A dict with region, key and keyid, or a ...
Ensure a set of DHCP options with the given settings exist. Note that the current implementation only SETS values during option set creation. It is unable to update option sets in place, and thus merely verifies the set exists via the given name and/or dhcp_options_id param. name (string) ...
Ensure a set of DHCP options with the given settings exist. name (string) Name of the DHCP options set. dhcp_options_id (string) Id of the DHCP options set. region (string) Region to connect to. key (string) Secret key to be used. ...
Ensure a subnet exists. name Name of the subnet. cidr_block The range if IPs for the subnet, in CIDR format. For example: 10.0.0.0/24. Block size must be between /16 and /28 netmask. vpc_name Name of the VPC in which the subnet should be placed. Either vpc_name or ...
Helper function verify a subnet's route table association route_table_desc the description of a route table, as returned from boto_vpc.describe_route_table subnet_id the subnet id to verify .. versionadded:: 2016.11.0 def _verify_subnet_association(route_table_desc, subnet_id): ''' ...
Ensure subnet with passed properties is absent. name Name of the subnet. region Region to connect to. key Secret key to be used. keyid Access key to be used. profile A dict with region, key and keyid, or a pillar key (string) that contains a dict ...
Ensure an internet gateway exists. name Name of the internet gateway. vpc_name Name of the VPC to which the internet gateway should be attached. vpc_id Id of the VPC to which the internet_gateway should be attached. Only one of vpc_name or vpc_id may be provided. tags...
Ensure the named internet gateway is absent. name Name of the internet gateway. detach First detach the internet gateway from a VPC, if attached. region Region to connect to. key Secret key to be used. keyid Access key to be used. profile A d...
Ensure route table with routes exists and is associated to a VPC. This function requires boto3 to be installed if nat gatewyas are specified. Example: .. code-block:: yaml boto_vpc.route_table_present: - name: my_route_table - vpc_id: vpc-123456 - routes: ...
Ensure the named route table is absent. name Name of the route table. region Region to connect to. key Secret key to be used. keyid Access key to be used. profile A dict with region, key and keyid, or a pillar key (string) that contains a dict wit...
Ensure a nat gateway exists within the specified subnet This function requires boto3. .. versionadded:: 2016.11.0 Example: .. code-block:: yaml boto_vpc.nat_gateway_present: - subnet_name: my-subnet name Name of the state subnet_name Name of the subnet wi...
Ensure the nat gateway in the named subnet is absent. This function requires boto3. .. versionadded:: 2016.11.0 name Name of the state. subnet_name Name of the subnet within which the nat gateway should exist subnet_id Id of the subnet within which the nat gateway should...
Accept a VPC pending requested peering connection between two VPCs. name Name of this state conn_id The connection ID to accept. Exclusive with conn_name. String type. conn_name The name of the VPC peering connection to accept. Exclusive with conn_id. String type. region ...
name Name of the state requester_vpc_id ID of the requesting VPC. Exclusive with requester_vpc_name. String type. requester_vpc_name Name tag of the requesting VPC. Exclusive with requester_vpc_id. String type. peer_vpc_id ID of the VPC tp crete VPC peering connection wi...
name Name of the state requester_vpc_id ID of the requesting VPC. Exclusive with requester_vpc_name. requester_vpc_name Name tag of the requesting VPC. Exclusive with requester_vpc_id. peer_vpc_id ID of the VPC tp crete VPC peering connection with. This can be a VPC in ...
name Name of the state conn_id ID of the peering connection to delete. Exclusive with conn_name. conn_name The name of the peering connection to delete. Exclusive with conn_id. region Region to connect to. key Secret key to be used. keyid Access...
Destroy the partition table and content of a given disk. .. code-block:: bash salt '*' ceph.osd_prepare 'dev'='/dev/vdc' \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' dev The block device to format. cluster_name The cluster name. Defaul...
Create a virtual server CLI Examples: .. code-block:: bash salt-run f5.create_vs lbalancer vs_name 10.0.0.1 80 tcp http poolname def create_vs(lb, name, ip, port, protocol, profile, pool_name): ''' Create a virtual server CLI Examples: .. code-block:: bash salt-run f5.crea...
Create a pool on the F5 load balancer CLI Examples: .. code-block:: bash salt-run f5.create_pool load_balancer pool_name loadbalance_method salt-run f5.create_pool load_balancer my_pool ROUND_ROBIN def create_pool(lb, name, method='ROUND_ROBIN'): ''' Create a pool on the F5 load bala...
Add a node to a pool CLI Examples: .. code-block:: bash salt-run f5.add_pool_member load_balancer 10.0.0.1 80 my_pool def add_pool_member(lb, name, port, pool_name): ''' Add a node to a pool CLI Examples: .. code-block:: bash salt-run f5.add_pool_member load_balancer 10.0....
Check to see if a pool exists CLI Examples: .. code-block:: bash salt-run f5.check_pool load_balancer pool_name def check_pool(lb, name): ''' Check to see if a pool exists CLI Examples: .. code-block:: bash salt-run f5.check_pool load_balancer pool_name ''' if __op...
Check a pool member exists in a specific pool CLI Examples: .. code-block:: bash salt-run f5.check_member_pool load_balancer 10.0.0.1 my_pool def check_member_pool(lb, member, pool_name): ''' Check a pool member exists in a specific pool CLI Examples: .. code-block:: bash ...
Connect to F5 def _connect(self): ''' Connect to F5 ''' try: self.bigIP = f5.BIGIP(hostname=self.lb, username=self.username, password=self.password, fromurl=True, ...
Create a virtual server def create_vs(self, name, ip, port, protocol, profile, pool_name): ''' Create a virtual server ''' vs = self.bigIP.LocalLB.VirtualServer vs_def = vs.typefactory.create('Common.VirtualServerDefinition') vs_def.name = name vs_def.address = ...
Create a pool on the F5 load balancer def create_pool(self, name, method='ROUND_ROBIN'): ''' Create a pool on the F5 load balancer ''' lbmethods = self.bigIP.LocalLB.Pool.typefactory.create( 'LocalLB.LBMethod' ) supported_method = [i[0] for i in lbmethods if...
Add a node to a pool def add_pool_member(self, name, port, pool_name): ''' Add a node to a pool ''' if not self.check_pool(pool_name): raise CommandExecutionError( '{0} pool does not exists'.format(pool_name) ) members_seq = self.bigIP.Lo...
Check to see if a pool exists def check_pool(self, name): ''' Check to see if a pool exists ''' pools = self.bigIP.LocalLB.Pool for pool in pools.get_list(): if pool.split('/')[-1] == name: return True return False
Check to see if a virtual server exists def check_virtualserver(self, name): ''' Check to see if a virtual server exists ''' vs = self.bigIP.LocalLB.VirtualServer for v in vs.get_list(): if v.split('/')[-1] == name: return True return False
Check a pool member exists in a specific pool def check_member_pool(self, member, pool_name): ''' Check a pool member exists in a specific pool ''' members = self.bigIP.LocalLB.Pool.get_member(pool_names=[pool_name])[0] for mem in members: if member == mem.address: ...
List all the load balancer methods def lbmethods(self): ''' List all the load balancer methods ''' methods = self.bigIP.LocalLB.Pool.typefactory.create( 'LocalLB.LBMethod' ) return [method[0].split('_', 2)[-1] for method in methods]
Return a conn object for the passed VM data def get_conn(service='SoftLayer_Virtual_Guest'): ''' Return a conn object for the passed VM data ''' client = SoftLayer.Client( username=config.get_cloud_config_value( 'user', get_configured_provider(), __opts__, search_global=False ...
List all available locations def avail_locations(call=None): ''' List all available locations ''' if call == 'action': raise SaltCloudSystemExit( 'The avail_locations function must be called with ' '-f or --function, or with the --list-locations option' ) re...
Return a dict of all available VM sizes on the cloud provider with relevant data. This data is provided in three dicts. def avail_sizes(call=None): ''' Return a dict of all available VM sizes on the cloud provider with relevant data. This data is provided in three dicts. ''' if call == 'action'...
Return a dict of all available VM images on the cloud provider. def avail_images(call=None): ''' Return a dict of all available VM images on the cloud provider. ''' if call == 'action': raise SaltCloudSystemExit( 'The avail_images function must be called with ' '-f or --...
Return a dict of all custom VM images on the cloud provider. def list_custom_images(call=None): ''' Return a dict of all custom VM images on the cloud provider. ''' if call != 'function': raise SaltCloudSystemExit( 'The list_vlans function must be called with -f or --function.' ...
Create a single VM from a data dict def create(vm_): ''' Create a single VM from a data dict ''' try: # Check for required profile parameters before sending any API calls. if vm_['profile'] and config.is_profile_configured(__opts__, ...
Return a list of the VMs that are on the provider def list_nodes_full(mask='mask[id]', call=None): ''' Return a list of the VMs that are on the provider ''' if call == 'action': raise SaltCloudSystemExit( 'The list_nodes_full function must be called with -f or --function.' )...
Return a list of the VMs that are on the provider def list_nodes(call=None): ''' Return a list of the VMs that are on the provider ''' if call == 'action': raise SaltCloudSystemExit( 'The list_nodes function must be called with -f or --function.' ) ret = {} nodes = ...
Destroy a node. CLI Example: .. code-block:: bash salt-cloud --destroy mymachine def destroy(name, call=None): ''' Destroy a node. CLI Example: .. code-block:: bash salt-cloud --destroy mymachine ''' if call == 'function': raise SaltCloudSystemExit( ...
.. versionadded:: 2014.7.0 Create new custom set CLI Example: .. code-block:: bash salt '*' ipset.new_set custom_set list:set salt '*' ipset.new_set custom_set list:set comment=True IPv6: salt '*' ipset.new_set custom_set list:set family=ipv6 def new_set(set=None, set_...
.. versionadded:: 2014.7.0 Delete ipset set. CLI Example: .. code-block:: bash salt '*' ipset.delete_set custom_set IPv6: salt '*' ipset.delete_set custom_set family=ipv6 def delete_set(set=None, family='ipv4'): ''' .. versionadded:: 2014.7.0 Delete ipset set. ...
.. versionadded:: 2014.7.0 Delete ipset set. CLI Example: .. code-block:: bash salt '*' ipset.rename_set custom_set new_set=new_set_name IPv6: salt '*' ipset.rename_set custom_set new_set=new_set_name family=ipv6 def rename_set(set=None, new_set=None, family='ipv4'): ''' ...
.. versionadded:: 2014.7.0 List all ipset sets. CLI Example: .. code-block:: bash salt '*' ipset.list_sets def list_sets(family='ipv4'): ''' .. versionadded:: 2014.7.0 List all ipset sets. CLI Example: .. code-block:: bash salt '*' ipset.list_sets ''' cm...
Check that given ipset set exists. .. versionadded:: 2014.7.0 CLI Example: .. code-block:: bash salt '*' ipset.check_set setname def check_set(set=None, family='ipv4'): ''' Check that given ipset set exists. .. versionadded:: 2014.7.0 CLI Example: .. code-block:: bash ...
Append an entry to the specified set. CLI Example: .. code-block:: bash salt '*' ipset.add setname 192.168.1.26 salt '*' ipset.add setname 192.168.0.3,AA:BB:CC:DD:EE:FF def add(setname=None, entry=None, family='ipv4', **kwargs): ''' Append an entry to the specified set. CLI Exa...
Check that an entry exists in the specified set. set The ipset name entry An entry in the ipset. This parameter can be a single IP address, a range of IP addresses, or a subnet block. Example: .. code-block:: cfg 192.168.0.1 192.168.0.2-192.168.0.19 ...
Flush entries in the specified set, Flush all sets if set is not specified. CLI Example: .. code-block:: bash salt '*' ipset.flush salt '*' ipset.flush set IPv6: salt '*' ipset.flush salt '*' ipset.flush set def flush(set=None, family='ipv4'): ''' Flush...
Return list of members for a set def _find_set_members(set): ''' Return list of members for a set ''' cmd = '{0} list {1}'.format(_ipset_cmd(), set) out = __salt__['cmd.run_all'](cmd, python_shell=False) if out['retcode'] > 0: # Set doesn't exist return false return False ...
Return information about the set def _find_set_info(set): ''' Return information about the set ''' cmd = '{0} list -t {1}'.format(_ipset_cmd(), set) out = __salt__['cmd.run_all'](cmd, python_shell=False) if out['retcode'] > 0: # Set doesn't exist return false return False ...
Query a resource, and decode the return data Passes through all the parameters described in the :py:func:`utils.http.query function <salt.utils.http.query>`: CLI Example: .. code-block:: bash salt-run http.query http://somelink.com/ salt-run http.query http://somelink.com/ method=POS...
Update the local CA bundle file from a URL .. versionadded:: 2015.5.0 CLI Example: .. code-block:: bash salt-run http.update_ca_bundle salt-run http.update_ca_bundle target=/path/to/cacerts.pem salt-run http.update_ca_bundle source=https://example.com/cacerts.pem If the ``ta...
Ensure that a user is present. name Name of the user. password Password of the user. email Optional - Email of the user. is_admin Optional - Set user as admin user. Default: False fullname Optional - Full name of the user. theme Optional - Se...
Ensure that a user is present. name Name of the user to remove. profile Configuration profile used to connect to the Grafana instance. Default is 'grafana'. def absent(name, profile='grafana'): ''' Ensure that a user is present. name Name of the user to remove. ...
Create the named vm CLI Example: .. code-block:: bash salt <minion-id> saltcloud.create webserver rackspace_centos_512 def create(name, profile): ''' Create the named vm CLI Example: .. code-block:: bash salt <minion-id> saltcloud.create webserver rackspace_centos_512 ...
Ensure that the named database is present with the specified properties. For more information about all of these options see man createdb(1) name The name of the database to manage tablespace Default tablespace for the database encoding The character encoding scheme to be used...
List all available profiles default_only : boolean return only default profile CLI Example: .. code-block:: bash salt '*' rbac.profile_list def profile_list(default_only=False): ''' List all available profiles default_only : boolean return only default profile ...
List profiles for user user : string username default_hidden : boolean hide default profiles CLI Example: .. code-block:: bash salt '*' rbac.profile_get leo salt '*' rbac.profile_get leo default_hidden=False def profile_get(user, default_hidden=True): ''' Lis...
Add profile to user user : string username profile : string profile name CLI Example: .. code-block:: bash salt '*' rbac.profile_add martine 'Primary Administrator' salt '*' rbac.profile_add martine 'User Management,User Security' def profile_add(user, profile): ...
List all available roles CLI Example: .. code-block:: bash salt '*' rbac.role_list def role_list(): ''' List all available roles CLI Example: .. code-block:: bash salt '*' rbac.role_list ''' roles = {} ## read user_attr file (user:qualifier:res1:res2:attr) ...
List roles for user user : string username CLI Example: .. code-block:: bash salt '*' rbac.role_get leo def role_get(user): ''' List roles for user user : string username CLI Example: .. code-block:: bash salt '*' rbac.role_get leo ''' use...
Add role to user user : string username role : string role name CLI Example: .. code-block:: bash salt '*' rbac.role_add martine netcfg salt '*' rbac.role_add martine netcfg,zfssnap def role_add(user, role): ''' Add role to user user : string use...
List all available authorization CLI Example: .. code-block:: bash salt '*' rbac.auth_list def auth_list(): ''' List all available authorization CLI Example: .. code-block:: bash salt '*' rbac.auth_list ''' auths = {} ## read auth_attr file (name:res1:res2:sho...
List authorization for user user : string username computed : boolean merge results from `auths` command into data from user_attr CLI Example: .. code-block:: bash salt '*' rbac.auth_get leo def auth_get(user, computed=True): ''' List authorization for user user...
Add authorization to user user : string username auth : string authorization name CLI Example: .. code-block:: bash salt '*' rbac.auth_add martine solaris.zone.manage salt '*' rbac.auth_add martine solaris.zone.manage,solaris.mail.mailq def auth_add(user, auth): ...
Manage the configuration of a specific policy term. filter_name The name of the policy filter. term_name The name of the term. filter_options Additional filter options. These options are platform-specific. See the complete list of options_. .. _options: https://gi...
Generate and load the configuration of a policy filter. filter_name The name of the policy filter. filter_options Additional filter options. These options are platform-specific. See the complete list of options_. .. _options: https://github.com/google/capirca/wiki/Policy-forma...
Get current system keyboard setting CLI Example: .. code-block:: bash salt '*' keyboard.get_sys def get_sys(): ''' Get current system keyboard setting CLI Example: .. code-block:: bash salt '*' keyboard.get_sys ''' cmd = '' if salt.utils.path.which('localectl')...
Set current system keyboard setting CLI Example: .. code-block:: bash salt '*' keyboard.set_sys dvorak def set_sys(layout): ''' Set current system keyboard setting CLI Example: .. code-block:: bash salt '*' keyboard.set_sys dvorak ''' if salt.utils.path.which('loca...
Get current X keyboard setting CLI Example: .. code-block:: bash salt '*' keyboard.get_x def get_x(): ''' Get current X keyboard setting CLI Example: .. code-block:: bash salt '*' keyboard.get_x ''' cmd = 'setxkbmap -query | grep layout' out = __salt__['cmd.run...
Generate a secure password. def secure_password(length=20, use_random=True): ''' Generate a secure password. ''' try: length = int(length) pw = '' while len(pw) < length: if HAS_RANDOM and use_random: while True: try: ...
Generate /etc/shadow hash def gen_hash(crypt_salt=None, password=None, algorithm='sha512'): ''' Generate /etc/shadow hash ''' if not HAS_CRYPT: raise SaltInvocationError('No crypt module for windows') hash_algorithms = dict( md5='$1$', blowfish='$2a$', sha256='$5$', sha512='$6$' ...
Jenkins One-At-A-Time Hash Function More Info: http://en.wikipedia.org/wiki/Jenkins_hash_function#one-at-a-time def _get_hash(): ''' Jenkins One-At-A-Time Hash Function More Info: http://en.wikipedia.org/wiki/Jenkins_hash_function#one-at-a-time ''' # Using bitmask to emulate rollover behavior o...
Splay a salt function call execution time across minions over a number of seconds (default: 300) .. note:: You *probably* want to use --async here and look up the job results later. If you're dead set on getting the output from the CLI command, then make sure to set the timeout (with th...
Ensure that the named index is absent. name Name of the index to remove def absent(name): ''' Ensure that the named index is absent. name Name of the index to remove ''' ret = {'name': name, 'changes': {}, 'result': True, 'comment': ''} try: index = __salt__['ela...
.. versionadded:: 2015.8.0 .. versionchanged:: 2017.3.0 Marked ``definition`` as optional. Ensure that the named index is present. name Name of the index to add definition Optional dict for creation parameters as per https://www.elastic.co/guide/en/elasticsearch/reference/curr...
Return full path to service command .. versionchanged:: 2016.3.4 Support for jail (representing jid or jail name) keyword argument in kwargs def _cmd(jail=None): ''' Return full path to service command .. versionchanged:: 2016.3.4 Support for jail (representing jid or jail name) keyword arg...
.. versionadded:: 2016.3.4 Return the jail's root directory (path) as shown in jls jail The jid or jail name def _get_jail_path(jail): ''' .. versionadded:: 2016.3.4 Return the jail's root directory (path) as shown in jls jail The jid or jail name ''' jls = salt.util...
Return full path to service rc script .. versionchanged:: 2016.3.4 Support for jail (representing jid or jail name) keyword argument in kwargs def _get_rcscript(name, jail=None): ''' Return full path to service rc script .. versionchanged:: 2016.3.4 Support for jail (representing jid or jai...
Return rcvar .. versionchanged:: 2016.3.4 Support for jail (representing jid or jail name) keyword argument in kwargs def _get_rcvar(name, jail=None): ''' Return rcvar .. versionchanged:: 2016.3.4 Support for jail (representing jid or jail name) keyword argument in kwargs ''' if not...
Return what services are set to run on boot .. versionchanged:: 2016.3.4 Support for jail (representing jid or jail name) keyword argument in kwargs CLI Example: .. code-block:: bash salt '*' service.get_enabled def get_enabled(jail=None): ''' Return what services are set to run on...