久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

slatstack Master的配置

發(fā)布時(shí)間:2024/1/17 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 slatstack Master的配置 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

Salt系統(tǒng)非常簡(jiǎn)單并且易于配置,Salt系統(tǒng)的兩個(gè)組件都有各自的配置文件。如"salt-master"是通過主配置文件來配置的,"salt-minion"是通過子節(jié)點(diǎn)配置文件來配置的。

參見

參考:`Master 配置文件的例子 <configuration-examples-master>`

The configuration file for the salt-master is located at?/etc/salt/master?by default. A notable exception is FreeBSD, where the configuration file is located at?/usr/local/etc/salt. The available options are as follows:

MASTER的主要配置

網(wǎng)絡(luò)接口

默認(rèn):?0.0.0.0?(所有的網(wǎng)絡(luò)接口都可訪問)

綁定本地接口

interface: 192.168.0.1

IPV6

缺省:'False'

Whether the master should listen for IPv6 connections. If this is set to True, the interface option must be adjusted too (for example: "interface: '::'")

ipv6: True

提供服務(wù)的端口

默認(rèn):?4505

The network port to set up the publication interface.

publish_port: 4505

MASTER_ID

缺省:"None"

The id to be passed in the publish job to minions. This is used for MultiSyndics to return the job to the requesting master.

注解

This must be the same string as the syndic is configured with.

master_id: MasterOfMaster

“USER”

缺省:"root"

用戶運(yùn)行salt的過程

user: root

最大打開文件數(shù)MAX_OPEN_FILES

Default:?100000

Each minion connecting to the master uses AT LEAST one file descriptor, the master subscription connection. If enough minions connect you might start seeing on the console(and then salt-master crashes):

Too many open files (tcp_listener.cpp:335) Aborted (core dumped) max_open_files: 100000

默認(rèn)值是`ulimit -Hn` 命令結(jié)果中的一個(gè),比如,最大可打開文件數(shù)的上限。

To set a different value than the default one, uncomment, and configure this setting. Remember that this value CANNOT be higher than the hard limit. Raising the hard limit depends on the OS and/or distribution, a good way to find the limit is to search the internet for something like this:

raise max open files hard limit debian

工作線程

默認(rèn):?5

接收命令和響應(yīng)minion的線程數(shù)量。如果因?yàn)閙inion太多引起響應(yīng)延遲的話,可提高工作線程worker_threads的值

使用對(duì)稱系統(tǒng)時(shí)工作線程數(shù)量不能小于3,其他情況可最小到1

注解

When the master daemon starts, it is expected behaviour to see multiple salt-master processes, even if 'worker_threads' is set to '1'. At a minimum, a controlling process will start along with a Publisher, an EventPublisher, and a number of MWorker processes will be started. The number of MWorker processes is tuneable by the 'worker_threads' configuration value while the others are not.

worker_threads: 5

返回端口

缺省:"4506"

返回服務(wù)器使用的端口,返回服務(wù)器是指Salt接收?qǐng)?zhí)行返回結(jié)果和命令執(zhí)行情況的服務(wù)器

ret_port: 4506

“PIDFILE”

默認(rèn):?/var/run/salt-master.pid

Specify the location of the master pidfile.

pidfile: /var/run/salt-master.pid

‘ROOT_DIR’

默認(rèn):?/

The system root directory to operate from, change this to make Salt run from an alternative root.

root_dir: /

注解

This directory is prepended to the following options:?pki_dir,?cachedir,?sock_dir,?log_file,?autosign_file,?autoreject_file,?pidfile.

"PKI_DIR"

缺省:?/etc/salt/pki

保存pki認(rèn)證密鑰的路徑

pki_dir: /etc/salt/pki

EXTENSION_MODULES

在 2016.3.0 版更改:?The default location for this directory has been moved. Prior to this version, the location was a directory named?extmods?in the Salt cachedir (on most platforms,?/var/cache/salt/extmods). It has been moved into the master cachedir (on most platforms,?/var/cache/salt/master/extmods).

Directory for custom modules. This directory can contain subdirectories for each of Salt's module types such as?runners,?output,?wheel,?modules,?states,?returners, etc. This path is appended to?root_dir.

extension_modules: /root/salt_extmods

MODULE_DIRS

缺省:'[]'

Like?extension_modules, but a list of extra directories to search for Salt modules.

module_dirs:- /var/cache/salt/minion/extmods

'CACHEDIR'

缺省:?/var/cache/salt

保存緩存信息的位置,特別是執(zhí)行salt命令的作業(yè)信息。

This directory may contain sensitive data and should be protected accordingly.

cachedir: /var/cache/salt

'VERIFY_ENV'

缺省:'True'

在啟動(dòng)的時(shí)候,驗(yàn)證和設(shè)置權(quán)限配置目錄。

verify_env: True

KEEP_JOBS

缺省:?24

Set the number of hours to keep old job information.

TIMEOUT

默認(rèn):?5

Set the default timeout for the salt command and api.

LOOP_INTERVAL

Default:?60

The loop_interval option controls the seconds for the master's maintenance process check cycle. This process updates file server backends, cleans the job cache and executes the scheduler.

OUTPUT

Default:?nested

Set the default outputter used by the salt command.

COLOR

缺省:'True'

By default output is colored, to disable colored output set the color value to False.

color: False

‘SOCK_DIR’

Default:?/var/run/salt/master

Set the location to use for creating Unix sockets for master process communication.

sock_dir: /var/run/salt/master

ENABLE_GPU_GRAINS

缺省:'True'

Enable GPU hardware data for your master. Be aware that the master can take a while to start up when lspci and/or dmidecode is used to populate the grains for the master.

作業(yè)緩存

缺省:'True'

The master maintains a job cache, while this is a great addition it can be a burden on the master for larger deployments (over 5000 minions). Disabling the job cache will make previously executed jobs unavailable to the jobs system and is not generally recommended. Normally it is wise to make sure the master has access to a faster IO system or a tmpfs is mounted to the jobs dir.

MINION數(shù)據(jù)緩存

缺省:'True'

The minion data cache is a cache of information about the minions stored on the master, this information is primarily the pillar and grains data. The data is cached in the Master cachedir under the name of the minion and used to predetermine what minions are expected to reply from executions.

minion_data_cache: True

擴(kuò)展作業(yè)緩存

Default:?''

Used to specify a default returner for all minions, when this option is set the specified returner needs to be properly configured and the minions will always default to sending returns to this returner. This will also disable the local job cache on the master.

ext_job_cache: redis

EVENT_RETURN

2015.5.0 新版功能.

Default:?''

Specify the returner to use to log events. A returner may have installation and configuration requirements. Read the returner's documentation.

注解

Not all returners support event returns. Verify that a returner has anevent_return()?function before configuring this option with a returner.

event_return: cassandra_cql

MASTER_JOB_CACHE

2014.7.0 新版功能.

Default: 'local_cache'

Specify the returner to use for the job cache. The job cache will only be interacted with from the salt master and therefore does not need to be accessible from the minions.

master_job_cache: redis

ENFORCE_MINE_CACHE

Default: False

By-default when disabling the minion_data_cache mine will stop working since it is based on cached data, by enabling this option we explicitly enabling only the cache for the mine system.

enforce_mine_cache: False

MAX_MINIONS

Default: 0

The maximum number of minion connections allowed by the master. Use this to accommodate the number of minions per master if you have different types of hardware serving your minions. The default of?0?means unlimited connections. Please note, that this can slow down the authentication process a bit in large setups.

max_minions: 100

CON_CACHE

Default: False

If max_minions is used in large installations, the master might experience high-load situations because of having to check the number of connected minions for every authentication. This cache provides the minion-ids of all connected minions to all MWorker-processes and greatly improves the performance of max_minions.

con_cache: True

PRESENCE_EVENTS

Default: False

Causes the master to periodically look for actively connected minions.?Presence events?are fired on the event bus on a regular interval with a list of connected minions, as well as events with lists of newly connected or disconnected minions. This is a master-only operation that does not send executions to minions. Note, this does not detect minions that connect to a master via localhost.

presence_events: False

TRANSPORT

Default:?zeromq

Changes the underlying transport layer. ZeroMQ is the recommended transport while additional transport layers are under development. Supported values arezeromq,?raet?(experimental), and?tcp?(experimental). This setting has a significant impact on performance and should not be changed unless you know what you are doing! Transports are explained in?Salt Transports.

transport: zeromq

SALT-SSH CONFIGURATION

ROSTER_FILE

Default:?/etc/salt/roster

Pass in an alternative location for the salt-ssh roster file.

roster_file: /root/roster

SSH_MINION_OPTS

Default: None

Pass in minion option overrides that will be inserted into the SHIM for salt-ssh calls. The local minion config is not used for salt-ssh. Can be overridden on a per-minion basis in the roster (minion_opts)

minion_opts:gpg_keydir: /root/gpg

MASTER SECURITY SETTINGS

OPEN_MODE

缺省:'False'

Open mode is a dangerous security feature. One problem encountered with pki authentication systems is that keys can become "mixed up" and authentication begins to fail. Open mode turns off authentication and tells the master to accept all authentication. This will clean up the pki keys received from the minions. Open mode should not be turned on for general use. Open mode should only be used for a short period of time to clean up pki keys. To turn on open mode set this value to?True.

open_mode: False

AUTO_ACCEPT

缺省:'False'

Enable auto_accept. This setting will automatically accept all incoming public keys from minions.

auto_accept: False

AUTOSIGN_TIMEOUT

2014.7.0 新版功能.

Default:?120

Time in minutes that a incoming public key with a matching name found in pki_dir/minion_autosign/keyid is automatically accepted. Expired autosign keys are removed when the master checks the minion_autosign directory. This method to auto accept minions can be safer than an autosign_file because the keyid record can expire and is limited to being an exact name match. This should still be considered a less than secure option, due to the fact that trust is based on just the requesting minion id.

AUTOSIGN_FILE

Default:?not?defined

If the?autosign_file?is specified incoming keys specified in the autosign_file will be automatically accepted. Matches will be searched for first by string comparison, then by globbing, then by full-string regex matching. This should still be considered a less than secure option, due to the fact that trust is based on just the requesting minion id.

AUTOREJECT_FILE

2014.1.0 新版功能.

Default:?not?defined

Works like?autosign_file, but instead allows you to specify minion IDs for which keys will automatically be rejected. Will override both membership in the?autosign_file?and the?auto_accept?setting.

PUBLISHER_ACL

Default:?{}

Enable user accounts on the master to execute specific modules. These modules can be expressed as regular expressions. Note that client_acl option is deprecated by publisher_acl option and will be removed in future releases.

publisher_acl:fred:- test.ping - pkg.*

PUBLISHER_ACL_BLACKLIST

Default:?{}

Blacklist users or modules

This example would blacklist all non sudo users, including root from running any commands. It would also blacklist any use of the "cmd" module. Note that client_acl_blacklist option is deprecated by publisher_acl_blacklist option and will be removed in future releases.

This is completely disabled by default.

publisher_acl_blacklist:users:- root - '^(?!sudo_).*$' # all non sudo users modules: - cmd

EXTERNAL_AUTH

Default:?{}

The external auth system uses the Salt auth modules to authenticate and validate users to access areas of the Salt system.

external_auth:pam:fred: - test.*

TOKEN_EXPIRE

Default:?43200

Time (in seconds) for a newly generated token to live.

Default: 12 hours

token_expire: 43200

FILE_RECV

缺省:'False'

Allow minions to push files to the master. This is disabled by default, for security purposes.

file_recv: False

MASTER_SIGN_PUBKEY

缺省:'False'

Sign the master auth-replies with a cryptographic signature of the masters public key. Please see the tutorial how to use these settings in the?Multimaster-PKI with Failover Tutorial

master_sign_pubkey: True

MASTER_SIGN_KEY_NAME

Default:?master_sign

The customizable name of the signing-key-pair without suffix.

master_sign_key_name: <filename_without_suffix>

MASTER_PUBKEY_SIGNATURE

Default:?master_pubkey_signature

The name of the file in the masters pki-directory that holds the pre-calculated signature of the masters public-key.

master_pubkey_signature: <filename>

MASTER_USE_PUBKEY_SIGNATURE

缺省:'False'

Instead of computing the signature for each auth-reply, use a pre-calculated signature. The?master_pubkey_signature?must also be set for this.

master_use_pubkey_signature: True

ROTATE_AES_KEY

缺省:'True'

Rotate the salt-masters AES-key when a minion-public is deleted with salt-key. This is a very important security-setting. Disabling it will enable deleted minions to still listen in on the messages published by the salt-master. Do not disable this unless it is absolutely clear what this does.

rotate_aes_key: True

MASTER MODULE MANAGEMENT

RUNNER_DIRS

缺省:'[]'

Set additional directories to search for runner modules.

CYTHON_ENABLE

缺省:'False'

Set to true to enable Cython modules (.pyx files) to be compiled on the fly on the Salt master.

cython_enable: False

MASTER STATE SYSTEM SETTINGS

STATE_TOP

Default:?top.sls

The state system uses a "top" file to tell the minions what environment to use and what modules to use. The state_top file is defined relative to the root of the base environment.

state_top: top.sls

MASTER_TOPS

Default:?{}

The master_tops option replaces the external_nodes option by creating a pluggable system for the generation of external top data. The external_nodes option is deprecated by the master_tops option. To gain the capabilities of the classic external_nodes system, use the following configuration:

master_tops:ext_nodes: <Shell command which returns yaml>

EXTERNAL_NODES

Default: None

The external_nodes option allows Salt to gather data that would normally be placed in a top file from and external node controller. The external_nodes option is the executable that will return the ENC data. Remember that Salt will look for external nodes AND top files and combine the results if both are enabled and available!

external_nodes: cobbler-ext-nodes

RENDERER

Default:?yaml_jinja

The renderer to use on the minions to render the state data.

renderer: yaml_jinja

FAILHARD

缺省:'False'

Set the global failhard flag, this informs all states to stop running states at the moment a single state fails.

failhard: False

STATE_VERBOSE

缺省:'True'

Controls the verbosity of state runs. By default, the results of all states are returned, but setting this value to?False?will cause salt to only display output for states which either failed, or succeeded without making any changes to the minion.

state_verbose: False

STATE_OUTPUT

Default:?full

The state_output setting changes if the output is the full multi line output for each changed state if set to 'full', but if set to 'terse' the output will be shortened to a single line. If set to 'mixed', the output will be terse unless a state failed, in which case that output will be full. If set to 'changes', the output will be full unless the state didn't change.

state_output: full

STATE_AGGREGATE

缺省:'False'

Automatically aggregate all states that have support for mod_aggregate by setting to?True. Or pass a list of state module names to automatically aggregate just those types.

state_aggregate:- pkg state_aggregate: True

STATE_EVENTS

缺省:'False'

Send progress events as each function in a state run completes execution by setting to?True. Progress events are in the formatsalt/job/<JID>/prog/<MID>/<RUN?NUM>.

state_events: True

YAML_UTF8

缺省:'False'

Enable extra routines for YAML renderer used states containing UTF characters.

yaml_utf8: False

TEST

缺省:'False'

Set all state calls to only test if they are going to actually make changes or just post what changes are going to be made.

test: False

MASTER FILE SERVER SETTINGS

FILESERVER_BACKEND

Default:?['roots']

Salt supports a modular fileserver backend system, this system allows the salt master to link directly to third party systems to gather and manage the files available to minions. Multiple backends can be configured and will be searched for the requested file in the order in which they are defined here. The default setting only enables the standard backend?roots, which is configured using the?file_roots?option.

范例:

fileserver_backend:- roots- git

HASH_TYPE

Default:?md5

The hash_type is the hash to use when discovering the hash of a file on the master server. The default is md5, but sha1, sha224, sha256, sha384, and sha512 are also supported.

hash_type: md5

FILE_BUFFER_SIZE

Default:?1048576

The buffer size in the file server in bytes.

file_buffer_size: 1048576

FILE_IGNORE_REGEX

Default:?''

A regular expression (or a list of expressions) that will be matched against the file path before syncing the modules and states to the minions. This includes files affected by the file.recurse state. For example, if you manage your custom modules and states in subversion and don't want all the '.svn' folders and content synced to your minions, you could set this to '/.svn($|/)'. By default nothing is ignored.

file_ignore_regex:- '/\.svn($|/)'- '/\.git($|/)'

FILE_IGNORE_GLOB

Default?''

A file glob (or list of file globs) that will be matched against the file path before syncing the modules and states to the minions. This is similar to file_ignore_regex above, but works on globs instead of regex. By default nothing is ignored.

file_ignore_glob:- '\*.pyc'- '\*/somefolder/\*.bak' - '\*.swp'

注解

Vim's .swp files are a common cause of Unicode errors in?file.recurse?states which use templating. Unless there is a good reason to distribute them via the fileserver, it is good practice to include?'\*.swp'?in the?file_ignore_glob.

ROOTS: MASTER'S LOCAL FILE SERVER

FILE_ROOTS

Default:

base:- /srv/salt

Salt runs a lightweight file server written in ZeroMQ to deliver files to minions. This file server is built into the master daemon and does not require a dedicated port.

The file server works on environments passed to the master. Each environment can have multiple root directories. The subdirectories in the multiple file roots cannot match, otherwise the downloaded files will not be able to be reliably ensured. A base environment is required to house the top file.

范例:

file_roots:base:- /srv/salt dev: - /srv/salt/dev/services - /srv/salt/dev/states prod: - /srv/salt/prod/services - /srv/salt/prod/states

GIT: GIT REMOTE FILE SERVER BACKEND

GITFS_REMOTES

缺省:'[]'

When using the?git?fileserver backend at least one git remote needs to be defined. The user running the salt master will need read access to the repo.

The repos will be searched in order to find the file requested by a client and the first repo to have the file will return it. Branches and tags are translated into salt environments.

gitfs_remotes:- git://github.com/saltstack/salt-states.git- file:///var/git/saltmaster

注解

file://?repos will be treated as a remote and copied into the master's gitfs cache, so only the?local?refs for those repos will be exposed as fileserver environments.

As of 2014.7.0, it is possible to have per-repo versions of several of the gitfs configuration parameters. For more information, see the?GitFS Walkthrough.

GITFS_PROVIDER

2014.7.0 新版功能.

Optional parameter used to specify the provider to be used for gitfs. More information can be found in the?GitFS Walkthrough.

Must be one of the following:?pygit2,?gitpython, or?dulwich. If unset, then each will be tried in that same order, and the first one with a compatible version installed will be the provider that is used.

gitfs_provider: dulwich

GITFS_SSL_VERIFY

缺省:'True'

Specifies whether or not to ignore SSL certificate errors when contacting the remote repository. You might want to set this to?False?if you're using a git repo that uses a self-signed certificate. However, keep in mind that setting this to anything other?True?is a considered insecure, and using an SSH-based transport (if available) may be a better option.

gitfs_ssl_verify: True

GITFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver which will be prepended to all files served by gitfs. This option can be used in conjunction with?gitfs_root. It can also be configured on a per-remote basis, see?here?for more info.

gitfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent). Assuming a file?baz.sh?in the root of a gitfs remote, and the above example mountpoint, this file would be served up via?salt://foo/bar/baz.sh.

GITFS_ROOT

Default:?''

Relative path to a subdirectory within the repository from which Salt should begin to serve files. This is useful when there are files in the repository that should not be available to the Salt fileserver. Can be used in conjunction with?gitfs_mountpoint. If used, then from Salt's perspective the directories above the one specified will be ignored and the relative path will (for the purposes of gitfs) be considered as the root of the repo.

gitfs_root: somefolder/otherfolder

在 2014.7.0 版更改:?Ability to specify gitfs roots on a per-remote basis was added. See?here?for more info.

GITFS_BASE

Default:?master

Defines which branch/tag should be used as the?base?environment.

gitfs_base: salt

在 2014.7.0 版更改:?Ability to specify the base on a per-remote basis was added. See?here?for more info.

GITFS_ENV_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if the repos in?gitfs_remotes?contain many branches/tags. More information can be found in the?GitFS Walkthrough.

gitfs_env_whitelist:- base- v1.* - 'mybranch\d+'

GITFS_ENV_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if the repos in?gitfs_remotes?contain many branches/tags. More information can be found in the?GitFS Walkthrough.

gitfs_env_blacklist:- base- v1.* - 'mybranch\d+'

GITFS AUTHENTICATION OPTIONS

These parameters only currently apply to the pygit2 gitfs provider. Examples of how to use these can be found in the?GitFS Walkthrough.

GITFS_USER

2014.7.0 新版功能.

Default:?''

Along with?gitfs_password, is used to authenticate to HTTPS remotes.

gitfs_user: git
GITFS_PASSWORD

2014.7.0 新版功能.

Default:?''

Along with?gitfs_user, is used to authenticate to HTTPS remotes. This parameter is not required if the repository does not use authentication.

gitfs_password: mypassword
GITFS_INSECURE_AUTH

2014.7.0 新版功能.

缺省:'False'

By default, Salt will not authenticate to an HTTP (non-HTTPS) remote. This parameter enables authentication over HTTP.?Enable this at your own risk.

gitfs_insecure_auth: True
GITFS_PUBKEY

2014.7.0 新版功能.

Default:?''

Along with?gitfs_privkey?(and optionally?gitfs_passphrase), is used to authenticate to SSH remotes. This parameter (or its?per-remote counterpart) is required for SSH remotes.

gitfs_pubkey: /path/to/key.pub
GITFS_PRIVKEY

2014.7.0 新版功能.

Default:?''

Along with?gitfs_pubkey?(and optionally?gitfs_passphrase), is used to authenticate to SSH remotes. This parameter (or its?per-remote counterpart) is required for SSH remotes.

gitfs_privkey: /path/to/key
GITFS_PASSPHRASE

2014.7.0 新版功能.

Default:?''

This parameter is optional, required only when the SSH key being used to authenticate is protected by a passphrase.

gitfs_passphrase: mypassphrase

HG: MERCURIAL REMOTE FILE SERVER BACKEND

HGFS_REMOTES

0.17.0 新版功能.

缺省:'[]'

When using the?hg?fileserver backend at least one mercurial remote needs to be defined. The user running the salt master will need read access to the repo.

The repos will be searched in order to find the file requested by a client and the first repo to have the file will return it. Branches and/or bookmarks are translated into salt environments, as defined by the?hgfs_branch_methodparameter.

hgfs_remotes:- https://username@bitbucket.org/username/reponame

注解

As of 2014.7.0, it is possible to have per-repo versions of the?hgfs_root,?hgfs_mountpoint,?hgfs_base, and?hgfs_branch_method?parameters. For example:

hgfs_remotes:- https://username@bitbucket.org/username/repo1- base: saltstates - https://username@bitbucket.org/username/repo2: - root: salt - mountpoint: salt://foo/bar/baz - https://username@bitbucket.org/username/repo3: - root: salt/states - branch_method: mixed

HGFS_BRANCH_METHOD

0.17.0 新版功能.

Default:?branches

Defines the objects that will be used as fileserver environments.

  • branches?- Only branches and tags will be used
  • bookmarks?- Only bookmarks and tags will be used
  • mixed?- Branches, bookmarks, and tags will be used
hgfs_branch_method: mixed

注解

Starting in version 2014.1.0, the value of the?hgfs_base?parameter defines which branch is used as the?base?environment, allowing for a?base?environment to be used with an?hgfs_branch_method?of?bookmarks.

Prior to this release, the?default?branch will be used as the?base?environment.

HGFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver which will be prepended to all files served by hgfs. This option can be used in conjunction with?hgfs_root. It can also be configured on a per-remote basis, see?here?for more info.

hgfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent). Assuming a file?baz.sh?in the root of an hgfs remote, this file would be served up via?salt://foo/bar/baz.sh.

HGFS_ROOT

0.17.0 新版功能.

Default:?''

Relative path to a subdirectory within the repository from which Salt should begin to serve files. This is useful when there are files in the repository that should not be available to the Salt fileserver. Can be used in conjunction with?hgfs_mountpoint. If used, then from Salt's perspective the directories above the one specified will be ignored and the relative path will (for the purposes of hgfs) be considered as the root of the repo.

hgfs_root: somefolder/otherfolder

在 2014.7.0 版更改:?Ability to specify hgfs roots on a per-remote basis was added. See?here?for more info.

HGFS_BASE

2014.1.0 新版功能.

Default:?default

Defines which branch should be used as the?base?environment. Change this ifhgfs_branch_method?is set to?bookmarks?to specify which bookmark should be used as the?base?environment.

hgfs_base: salt

HGFS_ENV_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your hgfs remotes contain many branches/bookmarks/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, only branches/bookmarks/tags which match one of the specified expressions will be exposed as fileserver environments.

If used in conjunction with?hgfs_env_blacklist, then the subset of branches/bookmarks/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

hgfs_env_whitelist:- base- v1.* - 'mybranch\d+'

HGFS_ENV_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your hgfs remotes contain many branches/bookmarks/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, branches/bookmarks/tags which match one of the specified expressions will?not?be exposed as fileserver environments.

If used in conjunction with?hgfs_env_whitelist, then the subset of branches/bookmarks/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

hgfs_env_blacklist:- base- v1.* - 'mybranch\d+'

SVN: SUBVERSION REMOTE FILE SERVER BACKEND

SVNFS_REMOTES

0.17.0 新版功能.

缺省:'[]'

When using the?svn?fileserver backend at least one subversion remote needs to be defined. The user running the salt master will need read access to the repo.

The repos will be searched in order to find the file requested by a client and the first repo to have the file will return it. The trunk, branches, and tags become environments, with the trunk being the?base?environment.

svnfs_remotes:- svn://foo.com/svn/myproject

注解

As of 2014.7.0, it is possible to have per-repo versions of the following configuration parameters:

  • svnfs_root
  • svnfs_mountpoint
  • svnfs_trunk
  • svnfs_branches
  • svnfs_tags

For example:

svnfs_remotes:- svn://foo.com/svn/project1- svn://foo.com/svn/project2: - root: salt - mountpoint: salt://foo/bar/baz - svn//foo.com/svn/project3: - root: salt/states - branches: branch - tags: tag

SVNFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver which will be prepended to all files served by hgfs. This option can be used in conjunction with?svnfs_root. It can also be configured on a per-remote basis, see?here?for more info.

svnfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent). Assuming a file?baz.sh?in the root of an svnfs remote, this file would be served up via?salt://foo/bar/baz.sh.

SVNFS_ROOT

0.17.0 新版功能.

Default:?''

Relative path to a subdirectory within the repository from which Salt should begin to serve files. This is useful when there are files in the repository that should not be available to the Salt fileserver. Can be used in conjunction with?svnfs_mountpoint. If used, then from Salt's perspective the directories above the one specified will be ignored and the relative path will (for the purposes of svnfs) be considered as the root of the repo.

svnfs_root: somefolder/otherfolder

在 2014.7.0 版更改:?Ability to specify svnfs roots on a per-remote basis was added. See?here?for more info.

SVNFS_TRUNK

2014.7.0 新版功能.

Default:?trunk

Path relative to the root of the repository where the trunk is located. Can also be configured on a per-remote basis, see?here?for more info.

svnfs_trunk: trunk

SVNFS_BRANCHES

2014.7.0 新版功能.

Default:?branches

Path relative to the root of the repository where the branches are located. Can also be configured on a per-remote basis, see?here?for more info.

svnfs_branches: branches

SVNFS_TAGS

2014.7.0 新版功能.

Default:?tags

Path relative to the root of the repository where the tags are located. Can also be configured on a per-remote basis, see?here?for more info.

svnfs_tags: tags

SVNFS_ENV_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your svnfs remotes contain many branches/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, only branches/tags which match one of the specified expressions will be exposed as fileserver environments.

If used in conjunction with?svnfs_env_blacklist, then the subset of branches/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

svnfs_env_whitelist:- base- v1.* - 'mybranch\d+'

SVNFS_ENV_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your svnfs remotes contain many branches/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, branches/tags which match one of the specified expressions will?not?be exposed as fileserver environments.

If used in conjunction with?svnfs_env_whitelist, then the subset of branches/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

svnfs_env_blacklist:- base- v1.* - 'mybranch\d+'

MINION: MINIONFS REMOTE FILE SERVER BACKEND

MINIONFS_ENV

2014.7.0 新版功能.

Default:?base

Environment from which MinionFS files are made available.

minionfs_env: minionfs

MINIONFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver from which minionfs files are served.

minionfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent).

MINIONFS_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which minions' pushed files are exposed via minionfs. If using a regular expression, the expression must match the entire minion ID.

If used, only the pushed files from minions which match one of the specified expressions will be exposed.

If used in conjunction with?minionfs_blacklist, then the subset of hosts which match the whitelist but do?not?match the blacklist will be exposed.

minionfs_whitelist:- base- v1.* - 'mybranch\d+'

MINIONFS_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which minions' pushed files are exposed via minionfs. If using a regular expression, the expression must match the entire minion ID.

If used, only the pushed files from minions which match one of the specified expressions will?not?be exposed.

If used in conjunction with?minionfs_whitelist, then the subset of hosts which match the whitelist but do?not?match the blacklist will be exposed.

minionfs_blacklist:- base- v1.* - 'mybranch\d+'

PILLAR CONFIGURATION

PILLAR_ROOTS

Default:

base:- /srv/pillar

Set the environments and directories used to hold pillar sls data. This configuration is the same as?file_roots:

pillar_roots:base:- /srv/pillar dev: - /srv/pillar/dev prod: - /srv/pillar/prod

EXT_PILLAR

The ext_pillar option allows for any number of external pillar interfaces to be called when populating pillar data. The configuration is based on ext_pillar functions. The available ext_pillar functions can be found herein:

https://github.com/saltstack/salt/blob/develop/salt/pillar

By default, the ext_pillar interface is not configured to run.

缺省:"None"

ext_pillar:- hiera: /etc/hiera.yaml - cmd_yaml: cat /etc/salt/yaml - reclass: inventory_base_uri: /etc/reclass

There are additional details at?Pillars

PILLAR_ROOTS_OVERRIDE_EXT_PILLAR

Boron 新版功能.

缺省:'False'

This option allows for external pillar sources to be evaluated beforepillar_roots, which means that values obtained from?pillar_roots?take precedence over those found from?ext_pillar?sources.

pillar_roots_override_ext_pillar: False

EXT_PILLAR_FIRST

2015.5.0 新版功能.

缺省:'False'

This option allows for external pillar sources to be evaluated beforepillar_roots. This allows for targeting file system pillar from ext_pillar. Note that ext_pillar_first option is deprecated by pillar_roots_override_ext_pillar option and will be removed in future releases.

ext_pillar_first: False

GIT EXTERNAL PILLAR (GIT_PILLAR) CONFIGURATION OPTIONS

GIT_PILLAR_PROVIDER

2015.8.0 新版功能.

Specify the provider to be used for git_pillar. Must be either?pygit2?orgitpython. If unset, then both will be tried in that same order, and the first one with a compatible version installed will be the provider that is used.

git_pillar_provider: gitpython

GIT_PILLAR_BASE

2015.8.0 新版功能.

Default:?master

If the desired branch matches this value, and the environment is omitted from the git_pillar configuration, then the environment for that git_pillar remote will be?base. For example, in the configuration below, the?foo?branch/tag would be assigned to the?base?environment, while?bar?would be mapped to the?barenvironment.

git_pillar_base: fooext_pillar:- git: - foo https://mygitserver/git-pillar.git - bar https://mygitserver/git-pillar.git

GIT_PILLAR_BRANCH

2015.8.0 新版功能.

Default:?master

If the branch is omitted from a git_pillar remote, then this branch will be used instead. For example, in the configuration below, the first two remotes would use the?pillardata?branch/tag, while the third would use the?foo?branch/tag.

git_pillar_branch: pillardataext_pillar:- git: - https://mygitserver/pillar1.git - https://mygitserver/pillar2.git: - root: pillar - foo https://mygitserver/pillar3.git

GIT_PILLAR_ENV

2015.8.0 新版功能.

Default:?''?(unset)

Environment to use for git_pillar remotes. This is normally derived from the branch/tag (or from a per-remote?env?parameter), but if set this will override the process of deriving the env from the branch/tag name. For example, in the configuration below the?foo?branch would be assigned to the?baseenvironment, while the?bar?branch would need to explicitly have?barconfigured as it's environment to keep it from also being mapped to the?baseenvironment.

git_pillar_env: baseext_pillar:- git: - foo https://mygitserver/git-pillar.git - bar https://mygitserver/git-pillar.git: - env: bar

For this reason, this option is recommended to be left unset, unless the use case calls for all (or almost all) of the git_pillar remotes to use the same environment irrespective of the branch/tag being used.

GIT_PILLAR_ROOT

2015.8.0 新版功能.

Default:?''

Path relative to the root of the repository where the git_pillar top file and SLS files are located. In the below configuration, the pillar top file and SLS files would be looked for in a subdirectory called?pillar.

git_pillar_root: pillarext_pillar:- git: - master https://mygitserver/pillar1.git - master https://mygitserver/pillar2.git

注解

This is a global option. If only one or two repos need to have their files sourced from a subdirectory, then?git_pillar_root?can be omitted and the root can be specified on a per-remote basis, like so:

ext_pillar:- git:- master https://mygitserver/pillar1.git - master https://mygitserver/pillar2.git: - root: pillar

In this example, for the first remote the top file and SLS files would be looked for in the root of the repository, while in the second remote the pillar data would be retrieved from the?pillar?subdirectory.

GIT_PILLAR_SSL_VERIFY

2015.8.0 新版功能.

缺省:'True'

Specifies whether or not to ignore SSL certificate errors when contacting the remote repository. You might want to set this to?False?if you're using a git repo that uses a self-signed certificate. However, keep in mind that setting this to anything other?True?is a considered insecure, and using an SSH-based transport (if available) may be a better option.

git_pillar_ssl_verify: True

GIT EXTERNAL PILLAR AUTHENTICATION OPTIONS

These parameters only currently apply to the?pygit2?git_pillar_provider. Authentication works the same as it does in gitfs, as outlined in the?GitFS Walkthrough, though the global configuration options are named differently to reflect that they are for git_pillar instead of gitfs.

GIT_PILLAR_USER

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_password, is used to authenticate to HTTPS remotes.

git_pillar_user: git
GIT_PILLAR_PASSWORD

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_user, is used to authenticate to HTTPS remotes. This parameter is not required if the repository does not use authentication.

git_pillar_password: mypassword
GIT_PILLAR_INSECURE_AUTH

2015.8.0 新版功能.

缺省:'False'

By default, Salt will not authenticate to an HTTP (non-HTTPS) remote. This parameter enables authentication over HTTP.?Enable this at your own risk.

git_pillar_insecure_auth: True
GIT_PILLAR_PUBKEY

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_privkey?(and optionally?git_pillar_passphrase), is used to authenticate to SSH remotes.

git_pillar_pubkey: /path/to/key.pub
GIT_PILLAR_PRIVKEY

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_pubkey?(and optionally?git_pillar_passphrase), is used to authenticate to SSH remotes.

git_pillar_privkey: /path/to/key
GIT_PILLAR_PASSPHRASE

2015.8.0 新版功能.

Default:?''

This parameter is optional, required only when the SSH key being used to authenticate is protected by a passphrase.

git_pillar_passphrase: mypassphrase

PILLAR_SOURCE_MERGING_STRATEGY

2014.7.0 新版功能.

Default:?smart

The pillar_source_merging_strategy option allows you to configure merging strategy between different sources. It accepts 4 values:

  • recurse:

    it will merge recursively mapping of data. For example, theses 2 sources:

    foo: 42 bar:element1: True bar:element2: True baz: quux

    will be merged as:

    foo: 42 bar:element1: True element2: True baz: quux
  • aggregate:

    instructs aggregation of elements between sources that use the #!yamlex renderer.

    For example, these two documents:

    #!yamlex foo: 42 bar: !aggregate { element1: True } baz: !aggregate quux #!yamlex bar: !aggregate {element2: True } baz: !aggregate quux2

    will be merged as:

    foo: 42 bar:element1: True element2: True baz: - quux - quux2
  • overwrite:

    Will use the behaviour of the 2014.1 branch and earlier.

    Overwrites elements according the order in which they are processed.

    First pillar processed:

    A:first_key: blahsecond_key: blah

    Second pillar processed:

    A:third_key: blahfourth_key: blah

    will be merged as:

    A:third_key: blahfourth_key: blah
  • smart (default):

    Guesses the best strategy based on the "renderer" setting.

PILLAR_MERGE_LISTS

2015.8.0 新版功能.

缺省:'False'

Recursively merge lists by aggregating them instead of replacing them.

pillar_merge_lists: False

SYNDIC SERVER SETTINGS

A Salt syndic is a Salt master used to pass commands from a higher Salt master to minions below the syndic. Using the syndic is simple. If this is a master that will have syndic servers(s) below it, set the "order_masters" setting to True.

If this is a master that will be running a syndic daemon for passthrough the "syndic_master" setting needs to be set to the location of the master server.

Do not not forget that, in other words, it means that it shares with the local minion its ID and PKI_DIR.

ORDER_MASTERS

缺省:'False'

Extra data needs to be sent with publications if the master is controlling a lower level master via a syndic minion. If this is the case the order_masters value must be set to True

order_masters: False

SYNDIC_MASTER

缺省:"None"

If this master will be running a salt-syndic to connect to a higher level master, specify the higher level master with this configuration value.

syndic_master: masterofmasters

You can optionally connect a syndic to multiple higher level masters by setting the 'syndic_master' value to a list:

syndic_master:- masterofmasters1- masterofmasters2

Each higher level master must be set up in a multimaster configuration.

SYNDIC_MASTER_PORT

缺省:"4506"

If this master will be running a salt-syndic to connect to a higher level master, specify the higher level master port with this configuration value.

syndic_master_port: 4506

SYNDIC_PIDFILE

Default:?salt-syndic.pid

If this master will be running a salt-syndic to connect to a higher level master, specify the pidfile of the syndic daemon.

syndic_pidfile: syndic.pid

SYNDIC_LOG_FILE

Default:?syndic.log

If this master will be running a salt-syndic to connect to a higher level master, specify the log_file of the syndic daemon.

syndic_log_file: salt-syndic.log

PEER PUBLISH SETTINGS

Salt minions can send commands to other minions, but only if the minion is allowed to. By default "Peer Publication" is disabled, and when enabled it is enabled for specific minions and specific commands. This allows secure compartmentalization of commands based on individual minions.

PEER

Default:?{}

The configuration uses regular expressions to match minions and then a list of regular expressions to match functions. The following will allow the minion authenticated as foo.example.com to execute functions from the test and pkg modules.

peer:foo.example.com:- test.* - pkg.*

This will allow all minions to execute all commands:

peer:.*:- .*

This is not recommended, since it would allow anyone who gets root on any single minion to instantly have root on all of the minions!

By adding an additional layer you can limit the target hosts in addition to the accessible commands:

peer:foo.example.com:'db*': - test.* - pkg.*

PEER_RUN

Default:?{}

The peer_run option is used to open up runners on the master to access from the minions. The peer_run configuration matches the format of the peer configuration.

The following example would allow foo.example.com to execute the manage.up runner:

peer_run:foo.example.com:- manage.up

MASTER LOGGING SETTINGS

LOG_FILE

Default:?/var/log/salt/master

The master log can be sent to a regular file, local path name, or network location. See also?log_file.

Examples:

log_file: /var/log/salt/master log_file: file:///dev/log log_file: udp://loghost:10514

LOG_LEVEL

Default:?warning

The level of messages to send to the console. See also?log_level.

log_level: warning

LOG_LEVEL_LOGFILE

Default:?warning

The level of messages to send to the log file. See also?log_level_logfile. When it is not set explicitly it will inherit the level set by?log_level?option.

log_level_logfile: warning

LOG_DATEFMT

Default:?%H:%M:%S

The date and time format used in console log messages. See also?log_datefmt.

log_datefmt: '%H:%M:%S'

LOG_DATEFMT_LOGFILE

Default:?%Y-%m-%d?%H:%M:%S

The date and time format used in log file messages. See alsolog_datefmt_logfile.

log_datefmt_logfile: '%Y-%m-%d %H:%M:%S'

LOG_FMT_CONSOLE

Default:?[%(levelname)-8s]?%(message)s

The format of the console logging messages. See also?log_fmt_console.

注解

Log colors are enabled in?log_fmt_console?rather than the?color?config since the logging system is loaded before the master config.

Console log colors are specified by these additional formatters:

%(colorlevel)s %(colorname)s %(colorprocess)s %(colormsg)s

Since it is desirable to include the surrounding brackets, '[' and ']', in the coloring of the messages, these color formatters also include padding as well. Color LogRecord attributes are only available for console logging.

log_fmt_console: '%(colorlevel)s %(colormsg)s' log_fmt_console: '[%(levelname)-8s] %(message)s'

LOG_FMT_LOGFILE

Default:?%(asctime)s,%(msecs)03.0f?[%(name)-17s][%(levelname)-8s]?%(message)s

The format of the log file logging messages. See also?log_fmt_logfile.

log_fmt_logfile: '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s'

LOG_GRANULAR_LEVELS

Default:?{}

This can be used to control logging levels more specifically. See alsolog_granular_levels.

NODE GROUPS

Default:?{}

Node groups allow for logical groupings of minion nodes. A group consists of a group name and a compound target.

nodegroups:group1: 'L@foo.domain.com,bar.domain.com,baz.domain.com or bl*.domain.com' group2: 'G@os:Debian and foo.domain.com' group3: 'G@os:Debian and N@group1' group4: - 'G@foo:bar' - 'or' - 'G@foo:baz'

More information on using nodegroups can be found?here.

RANGE CLUSTER SETTINGS

RANGE_SERVER

Default:?''

The range server (and optional port) that serves your cluster informationhttps://github.com/ytoolshed/range/wiki/%22yamlfile%22-module-file-spec

range_server: range:80

INCLUDE CONFIGURATION

DEFAULT_INCLUDE

Default:?master.d/*.conf

The master can include configuration from other files. Per default the master will automatically include all config files from?master.d/*.conf?where?master.dis relative to the directory of the master configuration file.

INCLUDE

Default:?not?defined

The master can include configuration from other files. To enable this, pass a list of paths to this option. The paths can be either relative or absolute; if relative, they are considered to be relative to the directory the main minion configuration file lives in. Paths can make use of shell-style globbing. If no files are matched by a path passed to this option then the master will log a warning message.

# Include files from a master.d directory in the same # directory as the master config file include: master.d/*# Include a single extra file into the configuration include: /etc/roles/webserver # Include several files and the master.d directory include: - extra_config - master.d/* - /etc/roles/webserver

WINDOWS SOFTWARE REPO SETTINGS

WINREPO_PROVIDER

2015.8.0 新版功能.

Specify the provider to be used for winrepo. Must be either?pygit2?orgitpython. If unset, then both will be tried in that same order, and the first one with a compatible version installed will be the provider that is used.

winrepo_provider: gitpython

WINREPO_DIR

在 2015.8.0 版更改:?Renamed from?win_repo?to?winrepo_dir.

Default:?/srv/salt/win/repo

Location on the master where the?winrepo_remotes?are checked out for pre-2015.8.0 minions. 2015.8.0 and later minions use?winrepo_remotes_ng?instead.

winrepo_dir: /srv/salt/win/repo

WINREPO_DIR_NG

2015.8.0 新版功能:?A new?ng?repo was added.

Default:?/srv/salt/win/repo-ng

Location on the master where the?winrepo_remotes_ng?are checked out for 2015.8.0 and later minions.

winrepo_dir_ng: /srv/salt/win/repo-ng

WINREPO_CACHEFILE

在 2015.8.0 版更改:?Renamed from?win_repo_mastercachefile?to?winrepo_cachefile

注解

2015.8.0 and later minions do not use this setting since the cachefile is now located on the minion.

Default:?winrepo.p

Path relative to?winrepo_dir?where the winrepo cache should be created.

winrepo_cachefile: winrepo.p

WINREPO_REMOTES

在 2015.8.0 版更改:?Renamed from?win_gitrepos?to?winrepo_remotes.

Default:?['https://github.com/saltstack/salt-winrepo.git']

List of git repositories to checkout and include in the winrepo for pre-2015.8.0 minions. 2015.8.0 and later minions use?winrepo_remotes_ng?instead.

winrepo_remotes:- https://github.com/saltstack/salt-winrepo.git

To specify a specific revision of the repository, prepend a commit ID to the URL of the repository:

winrepo_remotes:- '<commit_id> https://github.com/saltstack/salt-winrepo.git'

Replace?<commit_id>?with the SHA1 hash of a commit ID. Specifying a commit ID is useful in that it allows one to revert back to a previous version in the event that an error is introduced in the latest revision of the repo.

WINREPO_REMOTES_NG

2015.8.0 新版功能:?A new?ng?repo was added.

Default:?['https://github.com/saltstack/salt-winrepo-ng.git']

List of git repositories to checkout and include in the winrepo for 2015.8.0 and later minions.

winrepo_remotes_ng:- https://github.com/saltstack/salt-winrepo-ng.git

To specify a specific revision of the repository, prepend a commit ID to the URL of the repository:

winrepo_remotes:- '<commit_id> https://github.com/saltstack/salt-winrepo-ng.git'

Replace?<commit_id>?with the SHA1 hash of a commit ID. Specifying a commit ID is useful in that it allows one to revert back to a previous version in the event that an error is introduced in the latest revision of the repo.

WINREPO_BRANCH

2015.8.0 新版功能.

Default:?master

If the branch is omitted from a winrepo remote, then this branch will be used instead. For example, in the configuration below, the first two remotes would use the?winrepo?branch/tag, while the third would use the?foo?branch/tag.

winrepo_branch: winrepoext_pillar:- git: - https://mygitserver/winrepo1.git - https://mygitserver/winrepo2.git: - foo https://mygitserver/winrepo3.git

WINREPO_SSL_VERIFY

2015.8.0 新版功能.

缺省:'True'

Specifies whether or not to ignore SSL certificate errors when contacting the remote repository. You might want to set this to?False?if you're using a git repo that uses a self-signed certificate. However, keep in mind that setting this to anything other?True?is a considered insecure, and using an SSH-based transport (if available) may be a better option.

winrepo_ssl_verify: True

WINREPO AUTHENTICATION OPTIONS

These parameters only currently apply to the?pygit2?winrepo_provider. Authentication works the same as it does in gitfs, as outlined in the?GitFS Walkthrough, though the global configuration options are named differently to reflect that they are for winrepo instead of gitfs.

WINREPO_USER

2015.8.0 新版功能.

Default:?''

Along with?winrepo_password, is used to authenticate to HTTPS remotes.

winrepo_user: git

WINREPO_PASSWORD

2015.8.0 新版功能.

Default:?''

Along with?winrepo_user, is used to authenticate to HTTPS remotes. This parameter is not required if the repository does not use authentication.

winrepo_password: mypassword

WINREPO_INSECURE_AUTH

2015.8.0 新版功能.

缺省:'False'

By default, Salt will not authenticate to an HTTP (non-HTTPS) remote. This parameter enables authentication over HTTP.?Enable this at your own risk.

winrepo_insecure_auth: True

WINREPO_PUBKEY

2015.8.0 新版功能.

Default:?''

Along with?winrepo_privkey?(and optionally?winrepo_passphrase), is used to authenticate to SSH remotes.

winrepo_pubkey: /path/to/key.pub

WINREPO_PRIVKEY

2015.8.0 新版功能.

Default:?''

Along with?winrepo_pubkey?(and optionally?winrepo_passphrase), is used to authenticate to SSH remotes.

winrepo_privkey: /path/to/key

WINREPO_PASSPHRASE

2015.8.0 新版功能.

Default:?''

This parameter is optional, required only when the SSH key being used to authenticate is protected by a passphrase.

winrepo_passphrase: mypassphrase

Salt系統(tǒng)非常簡(jiǎn)單并且易于配置,Salt系統(tǒng)的兩個(gè)組件都有各自的配置文件。如"salt-master"是通過主配置文件來配置的,"salt-minion"是通過子節(jié)點(diǎn)配置文件來配置的。

參見

:參考:`Master 配置文件的例子 <configuration-examples-master>`

The configuration file for the salt-master is located at?/etc/salt/master?by default. A notable exception is FreeBSD, where the configuration file is located at?/usr/local/etc/salt. The available options are as follows:

MASTER的主要配置

網(wǎng)絡(luò)接口

默認(rèn):?0.0.0.0?(所有的網(wǎng)絡(luò)接口都可訪問)

綁定本地接口

interface: 192.168.0.1

IPV6

缺省:'False'

Whether the master should listen for IPv6 connections. If this is set to True, the interface option must be adjusted too (for example: "interface: '::'")

ipv6: True

提供服務(wù)的端口

默認(rèn):?4505

The network port to set up the publication interface.

publish_port: 4505

MASTER_ID

缺省:"None"

The id to be passed in the publish job to minions. This is used for MultiSyndics to return the job to the requesting master.

注解

This must be the same string as the syndic is configured with.

master_id: MasterOfMaster

“USER”

缺省:"root"

用戶運(yùn)行salt的過程

user: root

最大打開文件數(shù)MAX_OPEN_FILES

Default:?100000

Each minion connecting to the master uses AT LEAST one file descriptor, the master subscription connection. If enough minions connect you might start seeing on the console(and then salt-master crashes):

Too many open files (tcp_listener.cpp:335) Aborted (core dumped) max_open_files: 100000

默認(rèn)值是`ulimit -Hn` 命令結(jié)果中的一個(gè),比如,最大可打開文件數(shù)的上限。

To set a different value than the default one, uncomment, and configure this setting. Remember that this value CANNOT be higher than the hard limit. Raising the hard limit depends on the OS and/or distribution, a good way to find the limit is to search the internet for something like this:

raise max open files hard limit debian

工作線程

默認(rèn):?5

接收命令和響應(yīng)minion的線程數(shù)量。如果因?yàn)閙inion太多引起響應(yīng)延遲的話,可提高工作線程worker_threads的值

使用對(duì)稱系統(tǒng)時(shí)工作線程數(shù)量不能小于3,其他情況可最小到1

注解

When the master daemon starts, it is expected behaviour to see multiple salt-master processes, even if 'worker_threads' is set to '1'. At a minimum, a controlling process will start along with a Publisher, an EventPublisher, and a number of MWorker processes will be started. The number of MWorker processes is tuneable by the 'worker_threads' configuration value while the others are not.

worker_threads: 5

返回端口

缺省:"4506"

返回服務(wù)器使用的端口,返回服務(wù)器是指Salt接收?qǐng)?zhí)行返回結(jié)果和命令執(zhí)行情況的服務(wù)器

ret_port: 4506

“PIDFILE”

默認(rèn):?/var/run/salt-master.pid

Specify the location of the master pidfile.

pidfile: /var/run/salt-master.pid

‘ROOT_DIR’

默認(rèn):?/

The system root directory to operate from, change this to make Salt run from an alternative root.

root_dir: /

注解

This directory is prepended to the following options:?pki_dir,?cachedir,?sock_dir,?log_file,?autosign_file,?autoreject_file,?pidfile.

"PKI_DIR"

缺省:?/etc/salt/pki

保存pki認(rèn)證密鑰的路徑

pki_dir: /etc/salt/pki

EXTENSION_MODULES

在 2016.3.0 版更改:?The default location for this directory has been moved. Prior to this version, the location was a directory named?extmods?in the Salt cachedir (on most platforms,?/var/cache/salt/extmods). It has been moved into the master cachedir (on most platforms,?/var/cache/salt/master/extmods).

Directory for custom modules. This directory can contain subdirectories for each of Salt's module types such as?runners,?output,?wheel,?modules,?states,?returners, etc. This path is appended to?root_dir.

extension_modules: /root/salt_extmods

MODULE_DIRS

缺省:'[]'

Like?extension_modules, but a list of extra directories to search for Salt modules.

module_dirs:- /var/cache/salt/minion/extmods

'CACHEDIR'

缺省:?/var/cache/salt

保存緩存信息的位置,特別是執(zhí)行salt命令的作業(yè)信息。

This directory may contain sensitive data and should be protected accordingly.

cachedir: /var/cache/salt

'VERIFY_ENV'

缺省:'True'

在啟動(dòng)的時(shí)候,驗(yàn)證和設(shè)置權(quán)限配置目錄。

verify_env: True

KEEP_JOBS

缺省:?24

Set the number of hours to keep old job information.

TIMEOUT

默認(rèn):?5

Set the default timeout for the salt command and api.

LOOP_INTERVAL

Default:?60

The loop_interval option controls the seconds for the master's maintenance process check cycle. This process updates file server backends, cleans the job cache and executes the scheduler.

OUTPUT

Default:?nested

Set the default outputter used by the salt command.

COLOR

缺省:'True'

By default output is colored, to disable colored output set the color value to False.

color: False

‘SOCK_DIR’

Default:?/var/run/salt/master

Set the location to use for creating Unix sockets for master process communication.

sock_dir: /var/run/salt/master

ENABLE_GPU_GRAINS

缺省:'True'

Enable GPU hardware data for your master. Be aware that the master can take a while to start up when lspci and/or dmidecode is used to populate the grains for the master.

作業(yè)緩存

缺省:'True'

The master maintains a job cache, while this is a great addition it can be a burden on the master for larger deployments (over 5000 minions). Disabling the job cache will make previously executed jobs unavailable to the jobs system and is not generally recommended. Normally it is wise to make sure the master has access to a faster IO system or a tmpfs is mounted to the jobs dir.

MINION數(shù)據(jù)緩存

缺省:'True'

The minion data cache is a cache of information about the minions stored on the master, this information is primarily the pillar and grains data. The data is cached in the Master cachedir under the name of the minion and used to predetermine what minions are expected to reply from executions.

minion_data_cache: True

擴(kuò)展作業(yè)緩存

Default:?''

Used to specify a default returner for all minions, when this option is set the specified returner needs to be properly configured and the minions will always default to sending returns to this returner. This will also disable the local job cache on the master.

ext_job_cache: redis

EVENT_RETURN

2015.5.0 新版功能.

Default:?''

Specify the returner to use to log events. A returner may have installation and configuration requirements. Read the returner's documentation.

注解

Not all returners support event returns. Verify that a returner has anevent_return()?function before configuring this option with a returner.

event_return: cassandra_cql

MASTER_JOB_CACHE

2014.7.0 新版功能.

Default: 'local_cache'

Specify the returner to use for the job cache. The job cache will only be interacted with from the salt master and therefore does not need to be accessible from the minions.

master_job_cache: redis

ENFORCE_MINE_CACHE

Default: False

By-default when disabling the minion_data_cache mine will stop working since it is based on cached data, by enabling this option we explicitly enabling only the cache for the mine system.

enforce_mine_cache: False

MAX_MINIONS

Default: 0

The maximum number of minion connections allowed by the master. Use this to accommodate the number of minions per master if you have different types of hardware serving your minions. The default of?0?means unlimited connections. Please note, that this can slow down the authentication process a bit in large setups.

max_minions: 100

CON_CACHE

Default: False

If max_minions is used in large installations, the master might experience high-load situations because of having to check the number of connected minions for every authentication. This cache provides the minion-ids of all connected minions to all MWorker-processes and greatly improves the performance of max_minions.

con_cache: True

PRESENCE_EVENTS

Default: False

Causes the master to periodically look for actively connected minions.?Presence events?are fired on the event bus on a regular interval with a list of connected minions, as well as events with lists of newly connected or disconnected minions. This is a master-only operation that does not send executions to minions. Note, this does not detect minions that connect to a master via localhost.

presence_events: False

TRANSPORT

Default:?zeromq

Changes the underlying transport layer. ZeroMQ is the recommended transport while additional transport layers are under development. Supported values arezeromq,?raet?(experimental), and?tcp?(experimental). This setting has a significant impact on performance and should not be changed unless you know what you are doing! Transports are explained in?Salt Transports.

transport: zeromq

SALT-SSH CONFIGURATION

ROSTER_FILE

Default:?/etc/salt/roster

Pass in an alternative location for the salt-ssh roster file.

roster_file: /root/roster

SSH_MINION_OPTS

Default: None

Pass in minion option overrides that will be inserted into the SHIM for salt-ssh calls. The local minion config is not used for salt-ssh. Can be overridden on a per-minion basis in the roster (minion_opts)

minion_opts:gpg_keydir: /root/gpg

MASTER SECURITY SETTINGS

OPEN_MODE

缺省:'False'

Open mode is a dangerous security feature. One problem encountered with pki authentication systems is that keys can become "mixed up" and authentication begins to fail. Open mode turns off authentication and tells the master to accept all authentication. This will clean up the pki keys received from the minions. Open mode should not be turned on for general use. Open mode should only be used for a short period of time to clean up pki keys. To turn on open mode set this value to?True.

open_mode: False

AUTO_ACCEPT

缺省:'False'

Enable auto_accept. This setting will automatically accept all incoming public keys from minions.

auto_accept: False

AUTOSIGN_TIMEOUT

2014.7.0 新版功能.

Default:?120

Time in minutes that a incoming public key with a matching name found in pki_dir/minion_autosign/keyid is automatically accepted. Expired autosign keys are removed when the master checks the minion_autosign directory. This method to auto accept minions can be safer than an autosign_file because the keyid record can expire and is limited to being an exact name match. This should still be considered a less than secure option, due to the fact that trust is based on just the requesting minion id.

AUTOSIGN_FILE

Default:?not?defined

If the?autosign_file?is specified incoming keys specified in the autosign_file will be automatically accepted. Matches will be searched for first by string comparison, then by globbing, then by full-string regex matching. This should still be considered a less than secure option, due to the fact that trust is based on just the requesting minion id.

AUTOREJECT_FILE

2014.1.0 新版功能.

Default:?not?defined

Works like?autosign_file, but instead allows you to specify minion IDs for which keys will automatically be rejected. Will override both membership in the?autosign_file?and the?auto_accept?setting.

PUBLISHER_ACL

Default:?{}

Enable user accounts on the master to execute specific modules. These modules can be expressed as regular expressions. Note that client_acl option is deprecated by publisher_acl option and will be removed in future releases.

publisher_acl:fred:- test.ping - pkg.*

PUBLISHER_ACL_BLACKLIST

Default:?{}

Blacklist users or modules

This example would blacklist all non sudo users, including root from running any commands. It would also blacklist any use of the "cmd" module. Note that client_acl_blacklist option is deprecated by publisher_acl_blacklist option and will be removed in future releases.

This is completely disabled by default.

publisher_acl_blacklist:users:- root - '^(?!sudo_).*$' # all non sudo users modules: - cmd

EXTERNAL_AUTH

Default:?{}

The external auth system uses the Salt auth modules to authenticate and validate users to access areas of the Salt system.

external_auth:pam:fred: - test.*

TOKEN_EXPIRE

Default:?43200

Time (in seconds) for a newly generated token to live.

Default: 12 hours

token_expire: 43200

FILE_RECV

缺省:'False'

Allow minions to push files to the master. This is disabled by default, for security purposes.

file_recv: False

MASTER_SIGN_PUBKEY

缺省:'False'

Sign the master auth-replies with a cryptographic signature of the masters public key. Please see the tutorial how to use these settings in the?Multimaster-PKI with Failover Tutorial

master_sign_pubkey: True

MASTER_SIGN_KEY_NAME

Default:?master_sign

The customizable name of the signing-key-pair without suffix.

master_sign_key_name: <filename_without_suffix>

MASTER_PUBKEY_SIGNATURE

Default:?master_pubkey_signature

The name of the file in the masters pki-directory that holds the pre-calculated signature of the masters public-key.

master_pubkey_signature: <filename>

MASTER_USE_PUBKEY_SIGNATURE

缺省:'False'

Instead of computing the signature for each auth-reply, use a pre-calculated signature. The?master_pubkey_signature?must also be set for this.

master_use_pubkey_signature: True

ROTATE_AES_KEY

缺省:'True'

Rotate the salt-masters AES-key when a minion-public is deleted with salt-key. This is a very important security-setting. Disabling it will enable deleted minions to still listen in on the messages published by the salt-master. Do not disable this unless it is absolutely clear what this does.

rotate_aes_key: True

MASTER MODULE MANAGEMENT

RUNNER_DIRS

缺省:'[]'

Set additional directories to search for runner modules.

CYTHON_ENABLE

缺省:'False'

Set to true to enable Cython modules (.pyx files) to be compiled on the fly on the Salt master.

cython_enable: False

MASTER STATE SYSTEM SETTINGS

STATE_TOP

Default:?top.sls

The state system uses a "top" file to tell the minions what environment to use and what modules to use. The state_top file is defined relative to the root of the base environment.

state_top: top.sls

MASTER_TOPS

Default:?{}

The master_tops option replaces the external_nodes option by creating a pluggable system for the generation of external top data. The external_nodes option is deprecated by the master_tops option. To gain the capabilities of the classic external_nodes system, use the following configuration:

master_tops:ext_nodes: <Shell command which returns yaml>

EXTERNAL_NODES

Default: None

The external_nodes option allows Salt to gather data that would normally be placed in a top file from and external node controller. The external_nodes option is the executable that will return the ENC data. Remember that Salt will look for external nodes AND top files and combine the results if both are enabled and available!

external_nodes: cobbler-ext-nodes

RENDERER

Default:?yaml_jinja

The renderer to use on the minions to render the state data.

renderer: yaml_jinja

FAILHARD

缺省:'False'

Set the global failhard flag, this informs all states to stop running states at the moment a single state fails.

failhard: False

STATE_VERBOSE

缺省:'True'

Controls the verbosity of state runs. By default, the results of all states are returned, but setting this value to?False?will cause salt to only display output for states which either failed, or succeeded without making any changes to the minion.

state_verbose: False

STATE_OUTPUT

Default:?full

The state_output setting changes if the output is the full multi line output for each changed state if set to 'full', but if set to 'terse' the output will be shortened to a single line. If set to 'mixed', the output will be terse unless a state failed, in which case that output will be full. If set to 'changes', the output will be full unless the state didn't change.

state_output: full

STATE_AGGREGATE

缺省:'False'

Automatically aggregate all states that have support for mod_aggregate by setting to?True. Or pass a list of state module names to automatically aggregate just those types.

state_aggregate:- pkg state_aggregate: True

STATE_EVENTS

缺省:'False'

Send progress events as each function in a state run completes execution by setting to?True. Progress events are in the formatsalt/job/<JID>/prog/<MID>/<RUN?NUM>.

state_events: True

YAML_UTF8

缺省:'False'

Enable extra routines for YAML renderer used states containing UTF characters.

yaml_utf8: False

TEST

缺省:'False'

Set all state calls to only test if they are going to actually make changes or just post what changes are going to be made.

test: False

MASTER FILE SERVER SETTINGS

FILESERVER_BACKEND

Default:?['roots']

Salt supports a modular fileserver backend system, this system allows the salt master to link directly to third party systems to gather and manage the files available to minions. Multiple backends can be configured and will be searched for the requested file in the order in which they are defined here. The default setting only enables the standard backend?roots, which is configured using the?file_roots?option.

范例:

fileserver_backend:- roots- git

HASH_TYPE

Default:?md5

The hash_type is the hash to use when discovering the hash of a file on the master server. The default is md5, but sha1, sha224, sha256, sha384, and sha512 are also supported.

hash_type: md5

FILE_BUFFER_SIZE

Default:?1048576

The buffer size in the file server in bytes.

file_buffer_size: 1048576

FILE_IGNORE_REGEX

Default:?''

A regular expression (or a list of expressions) that will be matched against the file path before syncing the modules and states to the minions. This includes files affected by the file.recurse state. For example, if you manage your custom modules and states in subversion and don't want all the '.svn' folders and content synced to your minions, you could set this to '/.svn($|/)'. By default nothing is ignored.

file_ignore_regex:- '/\.svn($|/)'- '/\.git($|/)'

FILE_IGNORE_GLOB

Default?''

A file glob (or list of file globs) that will be matched against the file path before syncing the modules and states to the minions. This is similar to file_ignore_regex above, but works on globs instead of regex. By default nothing is ignored.

file_ignore_glob:- '\*.pyc'- '\*/somefolder/\*.bak' - '\*.swp'

注解

Vim's .swp files are a common cause of Unicode errors in?file.recurse?states which use templating. Unless there is a good reason to distribute them via the fileserver, it is good practice to include?'\*.swp'?in the?file_ignore_glob.

ROOTS: MASTER'S LOCAL FILE SERVER

FILE_ROOTS

Default:

base:- /srv/salt

Salt runs a lightweight file server written in ZeroMQ to deliver files to minions. This file server is built into the master daemon and does not require a dedicated port.

The file server works on environments passed to the master. Each environment can have multiple root directories. The subdirectories in the multiple file roots cannot match, otherwise the downloaded files will not be able to be reliably ensured. A base environment is required to house the top file.

范例:

file_roots:base:- /srv/salt dev: - /srv/salt/dev/services - /srv/salt/dev/states prod: - /srv/salt/prod/services - /srv/salt/prod/states

GIT: GIT REMOTE FILE SERVER BACKEND

GITFS_REMOTES

缺省:'[]'

When using the?git?fileserver backend at least one git remote needs to be defined. The user running the salt master will need read access to the repo.

The repos will be searched in order to find the file requested by a client and the first repo to have the file will return it. Branches and tags are translated into salt environments.

gitfs_remotes:- git://github.com/saltstack/salt-states.git- file:///var/git/saltmaster

注解

file://?repos will be treated as a remote and copied into the master's gitfs cache, so only the?local?refs for those repos will be exposed as fileserver environments.

As of 2014.7.0, it is possible to have per-repo versions of several of the gitfs configuration parameters. For more information, see the?GitFS Walkthrough.

GITFS_PROVIDER

2014.7.0 新版功能.

Optional parameter used to specify the provider to be used for gitfs. More information can be found in the?GitFS Walkthrough.

Must be one of the following:?pygit2,?gitpython, or?dulwich. If unset, then each will be tried in that same order, and the first one with a compatible version installed will be the provider that is used.

gitfs_provider: dulwich

GITFS_SSL_VERIFY

缺省:'True'

Specifies whether or not to ignore SSL certificate errors when contacting the remote repository. You might want to set this to?False?if you're using a git repo that uses a self-signed certificate. However, keep in mind that setting this to anything other?True?is a considered insecure, and using an SSH-based transport (if available) may be a better option.

gitfs_ssl_verify: True

GITFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver which will be prepended to all files served by gitfs. This option can be used in conjunction with?gitfs_root. It can also be configured on a per-remote basis, see?here?for more info.

gitfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent). Assuming a file?baz.sh?in the root of a gitfs remote, and the above example mountpoint, this file would be served up via?salt://foo/bar/baz.sh.

GITFS_ROOT

Default:?''

Relative path to a subdirectory within the repository from which Salt should begin to serve files. This is useful when there are files in the repository that should not be available to the Salt fileserver. Can be used in conjunction with?gitfs_mountpoint. If used, then from Salt's perspective the directories above the one specified will be ignored and the relative path will (for the purposes of gitfs) be considered as the root of the repo.

gitfs_root: somefolder/otherfolder

在 2014.7.0 版更改:?Ability to specify gitfs roots on a per-remote basis was added. See?here?for more info.

GITFS_BASE

Default:?master

Defines which branch/tag should be used as the?base?environment.

gitfs_base: salt

在 2014.7.0 版更改:?Ability to specify the base on a per-remote basis was added. See?here?for more info.

GITFS_ENV_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if the repos in?gitfs_remotes?contain many branches/tags. More information can be found in the?GitFS Walkthrough.

gitfs_env_whitelist:- base- v1.* - 'mybranch\d+'

GITFS_ENV_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if the repos in?gitfs_remotes?contain many branches/tags. More information can be found in the?GitFS Walkthrough.

gitfs_env_blacklist:- base- v1.* - 'mybranch\d+'

GITFS AUTHENTICATION OPTIONS

These parameters only currently apply to the pygit2 gitfs provider. Examples of how to use these can be found in the?GitFS Walkthrough.

GITFS_USER

2014.7.0 新版功能.

Default:?''

Along with?gitfs_password, is used to authenticate to HTTPS remotes.

gitfs_user: git
GITFS_PASSWORD

2014.7.0 新版功能.

Default:?''

Along with?gitfs_user, is used to authenticate to HTTPS remotes. This parameter is not required if the repository does not use authentication.

gitfs_password: mypassword
GITFS_INSECURE_AUTH

2014.7.0 新版功能.

缺省:'False'

By default, Salt will not authenticate to an HTTP (non-HTTPS) remote. This parameter enables authentication over HTTP.?Enable this at your own risk.

gitfs_insecure_auth: True
GITFS_PUBKEY

2014.7.0 新版功能.

Default:?''

Along with?gitfs_privkey?(and optionally?gitfs_passphrase), is used to authenticate to SSH remotes. This parameter (or its?per-remote counterpart) is required for SSH remotes.

gitfs_pubkey: /path/to/key.pub
GITFS_PRIVKEY

2014.7.0 新版功能.

Default:?''

Along with?gitfs_pubkey?(and optionally?gitfs_passphrase), is used to authenticate to SSH remotes. This parameter (or its?per-remote counterpart) is required for SSH remotes.

gitfs_privkey: /path/to/key
GITFS_PASSPHRASE

2014.7.0 新版功能.

Default:?''

This parameter is optional, required only when the SSH key being used to authenticate is protected by a passphrase.

gitfs_passphrase: mypassphrase

HG: MERCURIAL REMOTE FILE SERVER BACKEND

HGFS_REMOTES

0.17.0 新版功能.

缺省:'[]'

When using the?hg?fileserver backend at least one mercurial remote needs to be defined. The user running the salt master will need read access to the repo.

The repos will be searched in order to find the file requested by a client and the first repo to have the file will return it. Branches and/or bookmarks are translated into salt environments, as defined by the?hgfs_branch_methodparameter.

hgfs_remotes:- https://username@bitbucket.org/username/reponame

注解

As of 2014.7.0, it is possible to have per-repo versions of the?hgfs_root,?hgfs_mountpoint,?hgfs_base, and?hgfs_branch_method?parameters. For example:

hgfs_remotes:- https://username@bitbucket.org/username/repo1- base: saltstates - https://username@bitbucket.org/username/repo2: - root: salt - mountpoint: salt://foo/bar/baz - https://username@bitbucket.org/username/repo3: - root: salt/states - branch_method: mixed

HGFS_BRANCH_METHOD

0.17.0 新版功能.

Default:?branches

Defines the objects that will be used as fileserver environments.

  • branches?- Only branches and tags will be used
  • bookmarks?- Only bookmarks and tags will be used
  • mixed?- Branches, bookmarks, and tags will be used
hgfs_branch_method: mixed

注解

Starting in version 2014.1.0, the value of the?hgfs_base?parameter defines which branch is used as the?base?environment, allowing for a?base?environment to be used with an?hgfs_branch_method?of?bookmarks.

Prior to this release, the?default?branch will be used as the?base?environment.

HGFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver which will be prepended to all files served by hgfs. This option can be used in conjunction with?hgfs_root. It can also be configured on a per-remote basis, see?here?for more info.

hgfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent). Assuming a file?baz.sh?in the root of an hgfs remote, this file would be served up via?salt://foo/bar/baz.sh.

HGFS_ROOT

0.17.0 新版功能.

Default:?''

Relative path to a subdirectory within the repository from which Salt should begin to serve files. This is useful when there are files in the repository that should not be available to the Salt fileserver. Can be used in conjunction with?hgfs_mountpoint. If used, then from Salt's perspective the directories above the one specified will be ignored and the relative path will (for the purposes of hgfs) be considered as the root of the repo.

hgfs_root: somefolder/otherfolder

在 2014.7.0 版更改:?Ability to specify hgfs roots on a per-remote basis was added. See?here?for more info.

HGFS_BASE

2014.1.0 新版功能.

Default:?default

Defines which branch should be used as the?base?environment. Change this ifhgfs_branch_method?is set to?bookmarks?to specify which bookmark should be used as the?base?environment.

hgfs_base: salt

HGFS_ENV_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your hgfs remotes contain many branches/bookmarks/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, only branches/bookmarks/tags which match one of the specified expressions will be exposed as fileserver environments.

If used in conjunction with?hgfs_env_blacklist, then the subset of branches/bookmarks/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

hgfs_env_whitelist:- base- v1.* - 'mybranch\d+'

HGFS_ENV_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your hgfs remotes contain many branches/bookmarks/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, branches/bookmarks/tags which match one of the specified expressions will?not?be exposed as fileserver environments.

If used in conjunction with?hgfs_env_whitelist, then the subset of branches/bookmarks/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

hgfs_env_blacklist:- base- v1.* - 'mybranch\d+'

SVN: SUBVERSION REMOTE FILE SERVER BACKEND

SVNFS_REMOTES

0.17.0 新版功能.

缺省:'[]'

When using the?svn?fileserver backend at least one subversion remote needs to be defined. The user running the salt master will need read access to the repo.

The repos will be searched in order to find the file requested by a client and the first repo to have the file will return it. The trunk, branches, and tags become environments, with the trunk being the?base?environment.

svnfs_remotes:- svn://foo.com/svn/myproject

注解

As of 2014.7.0, it is possible to have per-repo versions of the following configuration parameters:

  • svnfs_root
  • svnfs_mountpoint
  • svnfs_trunk
  • svnfs_branches
  • svnfs_tags

For example:

svnfs_remotes:- svn://foo.com/svn/project1- svn://foo.com/svn/project2: - root: salt - mountpoint: salt://foo/bar/baz - svn//foo.com/svn/project3: - root: salt/states - branches: branch - tags: tag

SVNFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver which will be prepended to all files served by hgfs. This option can be used in conjunction with?svnfs_root. It can also be configured on a per-remote basis, see?here?for more info.

svnfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent). Assuming a file?baz.sh?in the root of an svnfs remote, this file would be served up via?salt://foo/bar/baz.sh.

SVNFS_ROOT

0.17.0 新版功能.

Default:?''

Relative path to a subdirectory within the repository from which Salt should begin to serve files. This is useful when there are files in the repository that should not be available to the Salt fileserver. Can be used in conjunction with?svnfs_mountpoint. If used, then from Salt's perspective the directories above the one specified will be ignored and the relative path will (for the purposes of svnfs) be considered as the root of the repo.

svnfs_root: somefolder/otherfolder

在 2014.7.0 版更改:?Ability to specify svnfs roots on a per-remote basis was added. See?here?for more info.

SVNFS_TRUNK

2014.7.0 新版功能.

Default:?trunk

Path relative to the root of the repository where the trunk is located. Can also be configured on a per-remote basis, see?here?for more info.

svnfs_trunk: trunk

SVNFS_BRANCHES

2014.7.0 新版功能.

Default:?branches

Path relative to the root of the repository where the branches are located. Can also be configured on a per-remote basis, see?here?for more info.

svnfs_branches: branches

SVNFS_TAGS

2014.7.0 新版功能.

Default:?tags

Path relative to the root of the repository where the tags are located. Can also be configured on a per-remote basis, see?here?for more info.

svnfs_tags: tags

SVNFS_ENV_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your svnfs remotes contain many branches/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, only branches/tags which match one of the specified expressions will be exposed as fileserver environments.

If used in conjunction with?svnfs_env_blacklist, then the subset of branches/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

svnfs_env_whitelist:- base- v1.* - 'mybranch\d+'

SVNFS_ENV_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which environments are made available. Can speed up state runs if your svnfs remotes contain many branches/tags. Full names, globs, and regular expressions are supported. If using a regular expression, the expression must match the entire minion ID.

If used, branches/tags which match one of the specified expressions will?not?be exposed as fileserver environments.

If used in conjunction with?svnfs_env_whitelist, then the subset of branches/tags which match the whitelist but do?not?match the blacklist will be exposed as fileserver environments.

svnfs_env_blacklist:- base- v1.* - 'mybranch\d+'

MINION: MINIONFS REMOTE FILE SERVER BACKEND

MINIONFS_ENV

2014.7.0 新版功能.

Default:?base

Environment from which MinionFS files are made available.

minionfs_env: minionfs

MINIONFS_MOUNTPOINT

2014.7.0 新版功能.

Default:?''

Specifies a path on the salt fileserver from which minionfs files are served.

minionfs_mountpoint: salt://foo/bar

注解

The?salt://?protocol designation can be left off (in other words,?foo/bar?and?salt://foo/bar?are equivalent).

MINIONFS_WHITELIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which minions' pushed files are exposed via minionfs. If using a regular expression, the expression must match the entire minion ID.

If used, only the pushed files from minions which match one of the specified expressions will be exposed.

If used in conjunction with?minionfs_blacklist, then the subset of hosts which match the whitelist but do?not?match the blacklist will be exposed.

minionfs_whitelist:- base- v1.* - 'mybranch\d+'

MINIONFS_BLACKLIST

2014.7.0 新版功能.

缺省:'[]'

Used to restrict which minions' pushed files are exposed via minionfs. If using a regular expression, the expression must match the entire minion ID.

If used, only the pushed files from minions which match one of the specified expressions will?not?be exposed.

If used in conjunction with?minionfs_whitelist, then the subset of hosts which match the whitelist but do?not?match the blacklist will be exposed.

minionfs_blacklist:- base- v1.* - 'mybranch\d+'

PILLAR CONFIGURATION

PILLAR_ROOTS

Default:

base:- /srv/pillar

Set the environments and directories used to hold pillar sls data. This configuration is the same as?file_roots:

pillar_roots:base:- /srv/pillar dev: - /srv/pillar/dev prod: - /srv/pillar/prod

EXT_PILLAR

The ext_pillar option allows for any number of external pillar interfaces to be called when populating pillar data. The configuration is based on ext_pillar functions. The available ext_pillar functions can be found herein:

https://github.com/saltstack/salt/blob/develop/salt/pillar

By default, the ext_pillar interface is not configured to run.

缺省:"None"

ext_pillar:- hiera: /etc/hiera.yaml - cmd_yaml: cat /etc/salt/yaml - reclass: inventory_base_uri: /etc/reclass

There are additional details at?Pillars

PILLAR_ROOTS_OVERRIDE_EXT_PILLAR

Boron 新版功能.

缺省:'False'

This option allows for external pillar sources to be evaluated beforepillar_roots, which means that values obtained from?pillar_roots?take precedence over those found from?ext_pillar?sources.

pillar_roots_override_ext_pillar: False

EXT_PILLAR_FIRST

2015.5.0 新版功能.

缺省:'False'

This option allows for external pillar sources to be evaluated beforepillar_roots. This allows for targeting file system pillar from ext_pillar. Note that ext_pillar_first option is deprecated by pillar_roots_override_ext_pillar option and will be removed in future releases.

ext_pillar_first: False

GIT EXTERNAL PILLAR (GIT_PILLAR) CONFIGURATION OPTIONS

GIT_PILLAR_PROVIDER

2015.8.0 新版功能.

Specify the provider to be used for git_pillar. Must be either?pygit2?orgitpython. If unset, then both will be tried in that same order, and the first one with a compatible version installed will be the provider that is used.

git_pillar_provider: gitpython

GIT_PILLAR_BASE

2015.8.0 新版功能.

Default:?master

If the desired branch matches this value, and the environment is omitted from the git_pillar configuration, then the environment for that git_pillar remote will be?base. For example, in the configuration below, the?foo?branch/tag would be assigned to the?base?environment, while?bar?would be mapped to the?barenvironment.

git_pillar_base: fooext_pillar:- git: - foo https://mygitserver/git-pillar.git - bar https://mygitserver/git-pillar.git

GIT_PILLAR_BRANCH

2015.8.0 新版功能.

Default:?master

If the branch is omitted from a git_pillar remote, then this branch will be used instead. For example, in the configuration below, the first two remotes would use the?pillardata?branch/tag, while the third would use the?foo?branch/tag.

git_pillar_branch: pillardataext_pillar:- git: - https://mygitserver/pillar1.git - https://mygitserver/pillar2.git: - root: pillar - foo https://mygitserver/pillar3.git

GIT_PILLAR_ENV

2015.8.0 新版功能.

Default:?''?(unset)

Environment to use for git_pillar remotes. This is normally derived from the branch/tag (or from a per-remote?env?parameter), but if set this will override the process of deriving the env from the branch/tag name. For example, in the configuration below the?foo?branch would be assigned to the?baseenvironment, while the?bar?branch would need to explicitly have?barconfigured as it's environment to keep it from also being mapped to the?baseenvironment.

git_pillar_env: baseext_pillar:- git: - foo https://mygitserver/git-pillar.git - bar https://mygitserver/git-pillar.git: - env: bar

For this reason, this option is recommended to be left unset, unless the use case calls for all (or almost all) of the git_pillar remotes to use the same environment irrespective of the branch/tag being used.

GIT_PILLAR_ROOT

2015.8.0 新版功能.

Default:?''

Path relative to the root of the repository where the git_pillar top file and SLS files are located. In the below configuration, the pillar top file and SLS files would be looked for in a subdirectory called?pillar.

git_pillar_root: pillarext_pillar:- git: - master https://mygitserver/pillar1.git - master https://mygitserver/pillar2.git

注解

This is a global option. If only one or two repos need to have their files sourced from a subdirectory, then?git_pillar_root?can be omitted and the root can be specified on a per-remote basis, like so:

ext_pillar:- git:- master https://mygitserver/pillar1.git - master https://mygitserver/pillar2.git: - root: pillar

In this example, for the first remote the top file and SLS files would be looked for in the root of the repository, while in the second remote the pillar data would be retrieved from the?pillar?subdirectory.

GIT_PILLAR_SSL_VERIFY

2015.8.0 新版功能.

缺省:'True'

Specifies whether or not to ignore SSL certificate errors when contacting the remote repository. You might want to set this to?False?if you're using a git repo that uses a self-signed certificate. However, keep in mind that setting this to anything other?True?is a considered insecure, and using an SSH-based transport (if available) may be a better option.

git_pillar_ssl_verify: True

GIT EXTERNAL PILLAR AUTHENTICATION OPTIONS

These parameters only currently apply to the?pygit2?git_pillar_provider. Authentication works the same as it does in gitfs, as outlined in the?GitFS Walkthrough, though the global configuration options are named differently to reflect that they are for git_pillar instead of gitfs.

GIT_PILLAR_USER

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_password, is used to authenticate to HTTPS remotes.

git_pillar_user: git
GIT_PILLAR_PASSWORD

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_user, is used to authenticate to HTTPS remotes. This parameter is not required if the repository does not use authentication.

git_pillar_password: mypassword
GIT_PILLAR_INSECURE_AUTH

2015.8.0 新版功能.

缺省:'False'

By default, Salt will not authenticate to an HTTP (non-HTTPS) remote. This parameter enables authentication over HTTP.?Enable this at your own risk.

git_pillar_insecure_auth: True
GIT_PILLAR_PUBKEY

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_privkey?(and optionally?git_pillar_passphrase), is used to authenticate to SSH remotes.

git_pillar_pubkey: /path/to/key.pub
GIT_PILLAR_PRIVKEY

2015.8.0 新版功能.

Default:?''

Along with?git_pillar_pubkey?(and optionally?git_pillar_passphrase), is used to authenticate to SSH remotes.

git_pillar_privkey: /path/to/key
GIT_PILLAR_PASSPHRASE

2015.8.0 新版功能.

Default:?''

This parameter is optional, required only when the SSH key being used to authenticate is protected by a passphrase.

git_pillar_passphrase: mypassphrase

PILLAR_SOURCE_MERGING_STRATEGY

2014.7.0 新版功能.

Default:?smart

The pillar_source_merging_strategy option allows you to configure merging strategy between different sources. It accepts 4 values:

  • recurse:

    it will merge recursively mapping of data. For example, theses 2 sources:

    foo: 42 bar:element1: True bar:element2: True baz: quux

    will be merged as:

    foo: 42 bar:element1: True element2: True baz: quux
  • aggregate:

    instructs aggregation of elements between sources that use the #!yamlex renderer.

    For example, these two documents:

    #!yamlex foo: 42 bar: !aggregate { element1: True } baz: !aggregate quux #!yamlex bar: !aggregate {element2: True } baz: !aggregate quux2

    will be merged as:

    foo: 42 bar:element1: True element2: True baz: - quux - quux2
  • overwrite:

    Will use the behaviour of the 2014.1 branch and earlier.

    Overwrites elements according the order in which they are processed.

    First pillar processed:

    A:first_key: blahsecond_key: blah

    Second pillar processed:

    A:third_key: blahfourth_key: blah

    will be merged as:

    A:third_key: blahfourth_key: blah
  • smart (default):

    Guesses the best strategy based on the "renderer" setting.

PILLAR_MERGE_LISTS

2015.8.0 新版功能.

缺省:'False'

Recursively merge lists by aggregating them instead of replacing them.

pillar_merge_lists: False

SYNDIC SERVER SETTINGS

A Salt syndic is a Salt master used to pass commands from a higher Salt master to minions below the syndic. Using the syndic is simple. If this is a master that will have syndic servers(s) below it, set the "order_masters" setting to True.

If this is a master that will be running a syndic daemon for passthrough the "syndic_master" setting needs to be set to the location of the master server.

Do not not forget that, in other words, it means that it shares with the local minion its ID and PKI_DIR.

ORDER_MASTERS

缺省:'False'

Extra data needs to be sent with publications if the master is controlling a lower level master via a syndic minion. If this is the case the order_masters value must be set to True

order_masters: False

SYNDIC_MASTER

缺省:"None"

If this master will be running a salt-syndic to connect to a higher level master, specify the higher level master with this configuration value.

syndic_master: masterofmasters

You can optionally connect a syndic to multiple higher level masters by setting the 'syndic_master' value to a list:

syndic_master:- masterofmasters1- masterofmasters2

Each higher level master must be set up in a multimaster configuration.

SYNDIC_MASTER_PORT

缺省:"4506"

If this master will be running a salt-syndic to connect to a higher level master, specify the higher level master port with this configuration value.

syndic_master_port: 4506

SYNDIC_PIDFILE

Default:?salt-syndic.pid

If this master will be running a salt-syndic to connect to a higher level master, specify the pidfile of the syndic daemon.

syndic_pidfile: syndic.pid

SYNDIC_LOG_FILE

Default:?syndic.log

If this master will be running a salt-syndic to connect to a higher level master, specify the log_file of the syndic daemon.

syndic_log_file: salt-syndic.log

PEER PUBLISH SETTINGS

Salt minions can send commands to other minions, but only if the minion is allowed to. By default "Peer Publication" is disabled, and when enabled it is enabled for specific minions and specific commands. This allows secure compartmentalization of commands based on individual minions.

PEER

Default:?{}

The configuration uses regular expressions to match minions and then a list of regular expressions to match functions. The following will allow the minion authenticated as foo.example.com to execute functions from the test and pkg modules.

peer:foo.example.com:- test.* - pkg.*

This will allow all minions to execute all commands:

peer:.*:- .*

This is not recommended, since it would allow anyone who gets root on any single minion to instantly have root on all of the minions!

By adding an additional layer you can limit the target hosts in addition to the accessible commands:

peer:foo.example.com:'db*': - test.* - pkg.*

PEER_RUN

Default:?{}

The peer_run option is used to open up runners on the master to access from the minions. The peer_run configuration matches the format of the peer configuration.

The following example would allow foo.example.com to execute the manage.up runner:

peer_run:foo.example.com:- manage.up

MASTER LOGGING SETTINGS

LOG_FILE

Default:?/var/log/salt/master

The master log can be sent to a regular file, local path name, or network location. See also?log_file.

Examples:

log_file: /var/log/salt/master log_file: file:///dev/log log_file: udp://loghost:10514

LOG_LEVEL

Default:?warning

The level of messages to send to the console. See also?log_level.

log_level: warning

LOG_LEVEL_LOGFILE

Default:?warning

The level of messages to send to the log file. See also?log_level_logfile. When it is not set explicitly it will inherit the level set by?log_level?option.

log_level_logfile: warning

LOG_DATEFMT

Default:?%H:%M:%S

The date and time format used in console log messages. See also?log_datefmt.

log_datefmt: '%H:%M:%S'

LOG_DATEFMT_LOGFILE

Default:?%Y-%m-%d?%H:%M:%S

The date and time format used in log file messages. See alsolog_datefmt_logfile.

log_datefmt_logfile: '%Y-%m-%d %H:%M:%S'

LOG_FMT_CONSOLE

Default:?[%(levelname)-8s]?%(message)s

The format of the console logging messages. See also?log_fmt_console.

注解

Log colors are enabled in?log_fmt_console?rather than the?color?config since the logging system is loaded before the master config.

Console log colors are specified by these additional formatters:

%(colorlevel)s %(colorname)s %(colorprocess)s %(colormsg)s

Since it is desirable to include the surrounding brackets, '[' and ']', in the coloring of the messages, these color formatters also include padding as well. Color LogRecord attributes are only available for console logging.

log_fmt_console: '%(colorlevel)s %(colormsg)s' log_fmt_console: '[%(levelname)-8s] %(message)s'

LOG_FMT_LOGFILE

Default:?%(asctime)s,%(msecs)03.0f?[%(name)-17s][%(levelname)-8s]?%(message)s

The format of the log file logging messages. See also?log_fmt_logfile.

log_fmt_logfile: '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s'

LOG_GRANULAR_LEVELS

Default:?{}

This can be used to control logging levels more specifically. See alsolog_granular_levels.

NODE GROUPS

Default:?{}

Node groups allow for logical groupings of minion nodes. A group consists of a group name and a compound target.

nodegroups:group1: 'L@foo.domain.com,bar.domain.com,baz.domain.com or bl*.domain.com' group2: 'G@os:Debian and foo.domain.com' group3: 'G@os:Debian and N@group1' group4: - 'G@foo:bar' - 'or' - 'G@foo:baz'

More information on using nodegroups can be found?here.

RANGE CLUSTER SETTINGS

RANGE_SERVER

Default:?''

The range server (and optional port) that serves your cluster informationhttps://github.com/ytoolshed/range/wiki/%22yamlfile%22-module-file-spec

range_server: range:80

INCLUDE CONFIGURATION

DEFAULT_INCLUDE

Default:?master.d/*.conf

The master can include configuration from other files. Per default the master will automatically include all config files from?master.d/*.conf?where?master.dis relative to the directory of the master configuration file.

INCLUDE

Default:?not?defined

The master can include configuration from other files. To enable this, pass a list of paths to this option. The paths can be either relative or absolute; if relative, they are considered to be relative to the directory the main minion configuration file lives in. Paths can make use of shell-style globbing. If no files are matched by a path passed to this option then the master will log a warning message.

# Include files from a master.d directory in the same # directory as the master config file include: master.d/*# Include a single extra file into the configuration include: /etc/roles/webserver # Include several files and the master.d directory include: - extra_config - master.d/* - /etc/roles/webserver

WINDOWS SOFTWARE REPO SETTINGS

WINREPO_PROVIDER

2015.8.0 新版功能.

Specify the provider to be used for winrepo. Must be either?pygit2?orgitpython. If unset, then both will be tried in that same order, and the first one with a compatible version installed will be the provider that is used.

winrepo_provider: gitpython

WINREPO_DIR

在 2015.8.0 版更改:?Renamed from?win_repo?to?winrepo_dir.

Default:?/srv/salt/win/repo

Location on the master where the?winrepo_remotes?are checked out for pre-2015.8.0 minions. 2015.8.0 and later minions use?winrepo_remotes_ng?instead.

winrepo_dir: /srv/salt/win/repo

WINREPO_DIR_NG

2015.8.0 新版功能:?A new?ng?repo was added.

Default:?/srv/salt/win/repo-ng

Location on the master where the?winrepo_remotes_ng?are checked out for 2015.8.0 and later minions.

winrepo_dir_ng: /srv/salt/win/repo-ng

WINREPO_CACHEFILE

在 2015.8.0 版更改:?Renamed from?win_repo_mastercachefile?to?winrepo_cachefile

注解

2015.8.0 and later minions do not use this setting since the cachefile is now located on the minion.

Default:?winrepo.p

Path relative to?winrepo_dir?where the winrepo cache should be created.

winrepo_cachefile: winrepo.p

WINREPO_REMOTES

在 2015.8.0 版更改:?Renamed from?win_gitrepos?to?winrepo_remotes.

Default:?['https://github.com/saltstack/salt-winrepo.git']

List of git repositories to checkout and include in the winrepo for pre-2015.8.0 minions. 2015.8.0 and later minions use?winrepo_remotes_ng?instead.

winrepo_remotes:- https://github.com/saltstack/salt-winrepo.git

To specify a specific revision of the repository, prepend a commit ID to the URL of the repository:

winrepo_remotes:- '<commit_id> https://github.com/saltstack/salt-winrepo.git'

Replace?<commit_id>?with the SHA1 hash of a commit ID. Specifying a commit ID is useful in that it allows one to revert back to a previous version in the event that an error is introduced in the latest revision of the repo.

WINREPO_REMOTES_NG

2015.8.0 新版功能:?A new?ng?repo was added.

Default:?['https://github.com/saltstack/salt-winrepo-ng.git']

List of git repositories to checkout and include in the winrepo for 2015.8.0 and later minions.

winrepo_remotes_ng:- https://github.com/saltstack/salt-winrepo-ng.git

To specify a specific revision of the repository, prepend a commit ID to the URL of the repository:

winrepo_remotes:- '<commit_id> https://github.com/saltstack/salt-winrepo-ng.git'

Replace?<commit_id>?with the SHA1 hash of a commit ID. Specifying a commit ID is useful in that it allows one to revert back to a previous version in the event that an error is introduced in the latest revision of the repo.

WINREPO_BRANCH

2015.8.0 新版功能.

Default:?master

If the branch is omitted from a winrepo remote, then this branch will be used instead. For example, in the configuration below, the first two remotes would use the?winrepo?branch/tag, while the third would use the?foo?branch/tag.

winrepo_branch: winrepoext_pillar:- git: - https://mygitserver/winrepo1.git - https://mygitserver/winrepo2.git: - foo https://mygitserver/winrepo3.git

WINREPO_SSL_VERIFY

2015.8.0 新版功能.

缺省:'True'

Specifies whether or not to ignore SSL certificate errors when contacting the remote repository. You might want to set this to?False?if you're using a git repo that uses a self-signed certificate. However, keep in mind that setting this to anything other?True?is a considered insecure, and using an SSH-based transport (if available) may be a better option.

winrepo_ssl_verify: True

WINREPO AUTHENTICATION OPTIONS

These parameters only currently apply to the?pygit2?winrepo_provider. Authentication works the same as it does in gitfs, as outlined in the?GitFS Walkthrough, though the global configuration options are named differently to reflect that they are for winrepo instead of gitfs.

WINREPO_USER

2015.8.0 新版功能.

Default:?''

Along with?winrepo_password, is used to authenticate to HTTPS remotes.

winrepo_user: git

WINREPO_PASSWORD

2015.8.0 新版功能.

Default:?''

Along with?winrepo_user, is used to authenticate to HTTPS remotes. This parameter is not required if the repository does not use authentication.

winrepo_password: mypassword

WINREPO_INSECURE_AUTH

2015.8.0 新版功能.

缺省:'False'

By default, Salt will not authenticate to an HTTP (non-HTTPS) remote. This parameter enables authentication over HTTP.?Enable this at your own risk.

winrepo_insecure_auth: True

WINREPO_PUBKEY

2015.8.0 新版功能.

Default:?''

Along with?winrepo_privkey?(and optionally?winrepo_passphrase), is used to authenticate to SSH remotes.

winrepo_pubkey: /path/to/key.pub

WINREPO_PRIVKEY

2015.8.0 新版功能.

Default:?''

Along with?winrepo_pubkey?(and optionally?winrepo_passphrase), is used to authenticate to SSH remotes.

winrepo_privkey: /path/to/key

WINREPO_PASSPHRASE

2015.8.0 新版功能.

Default:?''

This parameter is optional, required only when the SSH key being used to authenticate is protected by a passphrase.

winrepo_passphrase: mypassphrase

轉(zhuǎn)載于:https://www.cnblogs.com/benjamin77/p/7837149.html

總結(jié)

以上是生活随笔為你收集整理的slatstack Master的配置的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。

亚洲精品www久久久 | 日韩无码专区 | 扒开双腿吃奶呻吟做受视频 | 日日噜噜噜噜夜夜爽亚洲精品 | 少妇高潮一区二区三区99 | 精品国产青草久久久久福利 | 久久久久久久女国产乱让韩 | 日韩少妇白浆无码系列 | 久久熟妇人妻午夜寂寞影院 | 亚洲 激情 小说 另类 欧美 | 国产极品美女高潮无套在线观看 | 97夜夜澡人人爽人人喊中国片 | 欧美日本精品一区二区三区 | 中国女人内谢69xxxxxa片 | 国产黄在线观看免费观看不卡 | 色综合久久久无码中文字幕 | 国产特级毛片aaaaaa高潮流水 | 55夜色66夜色国产精品视频 | 无码免费一区二区三区 | 精品成在人线av无码免费看 | 青草青草久热国产精品 | 日本www一道久久久免费榴莲 | 日本www一道久久久免费榴莲 | 日韩精品无码免费一区二区三区 | 久久精品国产99精品亚洲 | 色欲久久久天天天综合网精品 | 最新国产乱人伦偷精品免费网站 | 国产成人午夜福利在线播放 | 又黄又爽又色的视频 | 国产成人一区二区三区别 | 人妻夜夜爽天天爽三区 | 国内少妇偷人精品视频免费 | 亚洲人成网站在线播放942 | 亚洲精品成人福利网站 | 久久久无码中文字幕久... | 中文精品无码中文字幕无码专区 | 色 综合 欧美 亚洲 国产 | 一本色道久久综合亚洲精品不卡 | 精品国产一区av天美传媒 | 精品aⅴ一区二区三区 | 色婷婷综合中文久久一本 | 小鲜肉自慰网站xnxx | 兔费看少妇性l交大片免费 | 少妇高潮喷潮久久久影院 | 亚洲熟悉妇女xxx妇女av | 亚洲精品久久久久中文第一幕 | 国产国语老龄妇女a片 | 国产女主播喷水视频在线观看 | 日韩av激情在线观看 | 久久久精品456亚洲影院 | 国产无套内射久久久国产 | 捆绑白丝粉色jk震动捧喷白浆 | 人妻无码久久精品人妻 | 免费人成在线观看网站 | www国产亚洲精品久久久日本 | 国产婷婷色一区二区三区在线 | 日日躁夜夜躁狠狠躁 | 亚洲日韩av一区二区三区中文 | 黑人巨大精品欧美一区二区 | 麻豆精品国产精华精华液好用吗 | 久久久久久九九精品久 | 亚洲色www成人永久网址 | 99国产精品白浆在线观看免费 | 欧美大屁股xxxxhd黑色 | 久久99精品久久久久久动态图 | 国产精品高潮呻吟av久久 | 男女下面进入的视频免费午夜 | 中文字幕人妻无码一夲道 | 久久 国产 尿 小便 嘘嘘 | 精品国产精品久久一区免费式 | 日韩亚洲欧美中文高清在线 | 好屌草这里只有精品 | 人人澡人人透人人爽 | 久久精品女人天堂av免费观看 | 一本色道婷婷久久欧美 | 精品人人妻人人澡人人爽人人 | 丁香花在线影院观看在线播放 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 又粗又大又硬毛片免费看 | 国产亚洲精品久久久ai换 | 成年女人永久免费看片 | 亚洲欧美中文字幕5发布 | 欧洲欧美人成视频在线 | 国产香蕉97碰碰久久人人 | 97se亚洲精品一区 | 狠狠噜狠狠狠狠丁香五月 | 人妻夜夜爽天天爽三区 | 一本久道久久综合婷婷五月 | 曰本女人与公拘交酡免费视频 | 无码国产乱人伦偷精品视频 | 久久亚洲中文字幕精品一区 | 精品aⅴ一区二区三区 | 2019午夜福利不卡片在线 | 亚洲自偷自偷在线制服 | 国产一区二区三区四区五区加勒比 | 88国产精品欧美一区二区三区 | 亚洲中文字幕成人无码 | 妺妺窝人体色www在线小说 | 亚洲精品美女久久久久久久 | 无码av中文字幕免费放 | 青草视频在线播放 | 波多野42部无码喷潮在线 | 精品国产福利一区二区 | 免费人成在线视频无码 | 熟女少妇在线视频播放 | 国产三级久久久精品麻豆三级 | 亚洲综合无码久久精品综合 | 国内精品久久久久久中文字幕 | 国产在线精品一区二区高清不卡 | 人人妻人人澡人人爽人人精品浪潮 | 国产97人人超碰caoprom | 性开放的女人aaa片 | 国产成人久久精品流白浆 | 欧美午夜特黄aaaaaa片 | 色综合天天综合狠狠爱 | 午夜免费福利小电影 | 欧美猛少妇色xxxxx | 国产精品18久久久久久麻辣 | 亚洲国精产品一二二线 | 在线看片无码永久免费视频 | 午夜不卡av免费 一本久久a久久精品vr综合 | 亚洲精品综合一区二区三区在线 | 久久久久久久久888 | 免费看少妇作爱视频 | 久久国产劲爆∧v内射 | 欧美丰满老熟妇xxxxx性 | 精品夜夜澡人妻无码av蜜桃 | 国产成人精品无码播放 | 久久成人a毛片免费观看网站 | 无码人妻精品一区二区三区不卡 | 国内精品久久久久久中文字幕 | 日本一区二区三区免费播放 | 亚洲欧美国产精品专区久久 | 在线播放亚洲第一字幕 | 亚洲乱码日产精品bd | 国产人妻久久精品二区三区老狼 | 日韩少妇白浆无码系列 | 高清无码午夜福利视频 | 日韩精品a片一区二区三区妖精 | 一区二区三区乱码在线 | 欧洲 | 国产成人午夜福利在线播放 | 亚洲毛片av日韩av无码 | 美女毛片一区二区三区四区 | 天下第一社区视频www日本 | 久久综合激激的五月天 | 精品成在人线av无码免费看 | 久久精品人人做人人综合 | 人妻aⅴ无码一区二区三区 | 熟妇人妻无乱码中文字幕 | 99久久精品无码一区二区毛片 | 扒开双腿疯狂进出爽爽爽视频 | 亚洲国产精品无码一区二区三区 | 久久久精品欧美一区二区免费 | 在线播放无码字幕亚洲 | 国产免费久久久久久无码 | 亚洲七七久久桃花影院 | 夜先锋av资源网站 | 乱码午夜-极国产极内射 | 精品无码一区二区三区爱欲 | 精品成在人线av无码免费看 | 无码国产乱人伦偷精品视频 | 色婷婷av一区二区三区之红樱桃 | 激情人妻另类人妻伦 | 午夜性刺激在线视频免费 | 国产无套内射久久久国产 | 兔费看少妇性l交大片免费 | 国产一区二区三区影院 | 国内少妇偷人精品视频 | 免费无码午夜福利片69 | 亚洲精品成人福利网站 | 欧美日韩色另类综合 | 图片小说视频一区二区 | 国产色视频一区二区三区 | 兔费看少妇性l交大片免费 | 欧美变态另类xxxx | 国产精品对白交换视频 | 国产日产欧产精品精品app | 久久99精品国产.久久久久 | 97久久精品无码一区二区 | 精品无码国产自产拍在线观看蜜 | 永久免费观看美女裸体的网站 | 欧美激情内射喷水高潮 | 国产免费久久久久久无码 | 婷婷五月综合缴情在线视频 | 午夜福利试看120秒体验区 | 久9re热视频这里只有精品 | 999久久久国产精品消防器材 | 精品久久久无码人妻字幂 | 亚洲国产精品一区二区第一页 | 亚洲日本一区二区三区在线 | 狠狠色丁香久久婷婷综合五月 | 亚洲自偷自拍另类第1页 | 日本一本二本三区免费 | 蜜桃视频韩日免费播放 | 日本大香伊一区二区三区 | 午夜精品久久久久久久 | 亚洲午夜福利在线观看 | 亚洲日韩乱码中文无码蜜桃臀网站 | 色爱情人网站 | 又粗又大又硬又长又爽 | 天堂а√在线地址中文在线 | 日韩在线不卡免费视频一区 | 永久免费精品精品永久-夜色 | 男女猛烈xx00免费视频试看 | 无码人妻丰满熟妇区毛片18 | 久久亚洲精品成人无码 | 国产午夜精品一区二区三区嫩草 | 午夜精品久久久内射近拍高清 | 少妇无码av无码专区在线观看 | 久青草影院在线观看国产 | 无码成人精品区在线观看 | 日韩欧美中文字幕在线三区 | 亚洲日韩av一区二区三区四区 | 又粗又大又硬又长又爽 | 人人澡人摸人人添 | 欧美日韩在线亚洲综合国产人 | 久久精品国产一区二区三区肥胖 | 少妇无码一区二区二三区 | 国产一区二区三区四区五区加勒比 | 一二三四社区在线中文视频 | 丰满人妻被黑人猛烈进入 | av香港经典三级级 在线 | 永久免费精品精品永久-夜色 | 九九在线中文字幕无码 | 性色av无码免费一区二区三区 | 强开小婷嫩苞又嫩又紧视频 | 无码毛片视频一区二区本码 | 熟女俱乐部五十路六十路av | 男女下面进入的视频免费午夜 | 色偷偷人人澡人人爽人人模 | 中文字幕无码av波多野吉衣 | 国产av一区二区精品久久凹凸 | 日日摸日日碰夜夜爽av | 中文字幕+乱码+中文字幕一区 | 国产精品爱久久久久久久 | 久久久久久av无码免费看大片 | 国产97人人超碰caoprom | 亚洲中文无码av永久不收费 | 三上悠亚人妻中文字幕在线 | 精品久久久无码中文字幕 | 成人三级无码视频在线观看 | 在线精品亚洲一区二区 | 撕开奶罩揉吮奶头视频 | 久久无码中文字幕免费影院蜜桃 | 高潮喷水的毛片 | 欧美老人巨大xxxx做受 | 亚洲精品国产a久久久久久 | 久久久久国色av免费观看性色 | 亚洲a无码综合a国产av中文 | 国产小呦泬泬99精品 | 欧美性色19p | 天天综合网天天综合色 | 久久久成人毛片无码 | 成人免费无码大片a毛片 | 麻豆精产国品 | 99久久久无码国产aaa精品 | 乱码av麻豆丝袜熟女系列 | 人人爽人人澡人人人妻 | 久久亚洲精品成人无码 | 性欧美牲交在线视频 | 久久久久久久人妻无码中文字幕爆 | 国产av一区二区三区最新精品 | 亚洲国精产品一二二线 | 人人妻人人澡人人爽欧美一区 | 久久国产精品二国产精品 | 久久精品国产精品国产精品污 | 国产精品久久久久7777 | 亚洲 日韩 欧美 成人 在线观看 | 人妻天天爽夜夜爽一区二区 | 亚洲精品国产品国语在线观看 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 好男人www社区 | 久久亚洲国产成人精品性色 | 午夜精品久久久久久久久 | 爱做久久久久久 | 十八禁真人啪啪免费网站 | 国产精品亚洲а∨无码播放麻豆 | 老熟女乱子伦 | 午夜熟女插插xx免费视频 | 亚洲精品中文字幕乱码 | 精品欧美一区二区三区久久久 | 国产婷婷色一区二区三区在线 | 精品一二三区久久aaa片 | 高潮喷水的毛片 | 亚洲成色在线综合网站 | 久久人人爽人人爽人人片ⅴ | 夫妻免费无码v看片 | 永久免费观看美女裸体的网站 | 无码国产色欲xxxxx视频 | 久久精品国产亚洲精品 | 一本久久伊人热热精品中文字幕 | 激情内射日本一区二区三区 | 无码任你躁久久久久久久 | 日本成熟视频免费视频 | 午夜精品久久久久久久久 | 无码av中文字幕免费放 | www国产亚洲精品久久网站 | 久久亚洲国产成人精品性色 | 爽爽影院免费观看 | 亚洲日本一区二区三区在线 | 亚洲天堂2017无码中文 | 精品无码国产一区二区三区av | 色情久久久av熟女人妻网站 | 亚洲精品成人av在线 | 又大又紧又粉嫩18p少妇 | 欧美性生交xxxxx久久久 | 国产亚洲精品久久久久久国模美 | 国产手机在线αⅴ片无码观看 | 日日碰狠狠躁久久躁蜜桃 | av香港经典三级级 在线 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 99在线 | 亚洲 | 亚洲中文字幕无码一久久区 | 国产明星裸体无码xxxx视频 | 亚洲国产午夜精品理论片 | 狠狠色丁香久久婷婷综合五月 | 国产欧美熟妇另类久久久 | 丰满人妻翻云覆雨呻吟视频 | 国产农村妇女高潮大叫 | 国产美女极度色诱视频www | 久久久久久久久蜜桃 | 人妻尝试又大又粗久久 | 精品国偷自产在线 | 国产无遮挡又黄又爽又色 | 99久久精品国产一区二区蜜芽 | av无码久久久久不卡免费网站 | 99久久99久久免费精品蜜桃 | 九一九色国产 | 精品无码成人片一区二区98 | 国产高清不卡无码视频 | 中文字幕乱码人妻二区三区 | 乱码午夜-极国产极内射 | 国内精品一区二区三区不卡 | 国精产品一区二区三区 | 樱花草在线播放免费中文 | 日韩在线不卡免费视频一区 | 粉嫩少妇内射浓精videos | 色综合视频一区二区三区 | 亚洲国产午夜精品理论片 | 日日干夜夜干 | 国产极品美女高潮无套在线观看 | 在线看片无码永久免费视频 | 国产亚洲美女精品久久久2020 | 西西人体www44rt大胆高清 | 国产麻豆精品精东影业av网站 | 正在播放东北夫妻内射 | 1000部夫妻午夜免费 | 国产一区二区三区影院 | 人人妻人人澡人人爽精品欧美 | 国产成人综合色在线观看网站 | 亚洲精品久久久久avwww潮水 | 国产人妻大战黑人第1集 | 国产又爽又猛又粗的视频a片 | 亚洲精品一区二区三区在线 | 亚洲一区二区三区含羞草 | 丰满人妻一区二区三区免费视频 | 久久无码人妻影院 | 蜜桃无码一区二区三区 | 永久免费精品精品永久-夜色 | 精品国产福利一区二区 | 强伦人妻一区二区三区视频18 | 亚洲国产精品久久久天堂 | 亚洲一区二区观看播放 | 日本丰满护士爆乳xxxx | 99久久精品国产一区二区蜜芽 | 色婷婷综合激情综在线播放 | 亚洲s码欧洲m码国产av | 日韩av激情在线观看 | 一二三四社区在线中文视频 | 特级做a爰片毛片免费69 | 国产成人精品久久亚洲高清不卡 | 国产激情综合五月久久 | 无码人妻黑人中文字幕 | 99er热精品视频 | 中文无码伦av中文字幕 | 国产午夜亚洲精品不卡 | 亚洲熟女一区二区三区 | 成在人线av无码免观看麻豆 | 东北女人啪啪对白 | 亚洲日韩av一区二区三区中文 | 欧美一区二区三区 | 在线观看免费人成视频 | 亚洲国产精华液网站w | 网友自拍区视频精品 | 99精品久久毛片a片 | 少妇激情av一区二区 | 亚洲欧美国产精品久久 | 2019nv天堂香蕉在线观看 | 日日夜夜撸啊撸 | 狂野欧美性猛交免费视频 | 极品尤物被啪到呻吟喷水 | 一本久道高清无码视频 | 国产在线无码精品电影网 | 中文字幕无码av波多野吉衣 | 伊人久久大香线蕉av一区二区 | 中文字幕无码热在线视频 | 国产精品99久久精品爆乳 | 久久国内精品自在自线 | 日本一卡二卡不卡视频查询 | 国内精品一区二区三区不卡 | 少妇厨房愉情理9仑片视频 | 99久久亚洲精品无码毛片 | 欧美老妇交乱视频在线观看 | 国产精品18久久久久久麻辣 | 久久久无码中文字幕久... | 99久久无码一区人妻 | 亚洲va欧美va天堂v国产综合 | 理论片87福利理论电影 | 久久国产36精品色熟妇 | 日韩人妻系列无码专区 | 中文字幕无码人妻少妇免费 | 波多野结衣av一区二区全免费观看 | 久久久中文久久久无码 | 领导边摸边吃奶边做爽在线观看 | 精品人妻中文字幕有码在线 | 亚洲性无码av中文字幕 | 国产乱人无码伦av在线a | 天堂亚洲2017在线观看 | 18禁止看的免费污网站 | 国产精品爱久久久久久久 | 纯爱无遮挡h肉动漫在线播放 | 国产av一区二区精品久久凹凸 | 久久久久久亚洲精品a片成人 | 国产人妻精品一区二区三区 | 日韩精品a片一区二区三区妖精 | 国产av无码专区亚洲awww | 人妻少妇精品久久 | 久久久精品成人免费观看 | 超碰97人人射妻 | 欧美人与动性行为视频 | 国产精品人人爽人人做我的可爱 | 动漫av网站免费观看 | 亚洲精品久久久久avwww潮水 | 亚洲成熟女人毛毛耸耸多 | 妺妺窝人体色www在线小说 | 日韩人妻无码中文字幕视频 | 无码吃奶揉捏奶头高潮视频 | 牛和人交xxxx欧美 | 久久久国产一区二区三区 | 性做久久久久久久免费看 | 亚洲成av人片在线观看无码不卡 | 99久久无码一区人妻 | 亚洲成在人网站无码天堂 | 日产精品99久久久久久 | 亚洲 高清 成人 动漫 | 99久久精品无码一区二区毛片 | 国产一区二区三区日韩精品 | 国产精品亚洲专区无码不卡 | 极品尤物被啪到呻吟喷水 | 高潮喷水的毛片 | 亚洲色www成人永久网址 | 性欧美牲交在线视频 | 国产黄在线观看免费观看不卡 | 欧美日本免费一区二区三区 | 久久精品国产亚洲精品 | 99久久精品午夜一区二区 | 1000部夫妻午夜免费 | 美女扒开屁股让男人桶 | 亚洲性无码av中文字幕 | 久久久久久久人妻无码中文字幕爆 | 国产凸凹视频一区二区 | 成人女人看片免费视频放人 | 久久国产精品_国产精品 | 搡女人真爽免费视频大全 | 免费无码午夜福利片69 | 帮老师解开蕾丝奶罩吸乳网站 | 亚洲精品美女久久久久久久 | 四十如虎的丰满熟妇啪啪 | 国产精品久久国产精品99 | 亚洲男人av天堂午夜在 | 日产精品高潮呻吟av久久 | 又大又黄又粗又爽的免费视频 | 波多野结衣av一区二区全免费观看 | 蜜桃视频韩日免费播放 | 亚洲欧美色中文字幕在线 | 久久伊人色av天堂九九小黄鸭 | 麻豆精产国品 | 日本乱人伦片中文三区 | 欧美放荡的少妇 | 亚洲色大成网站www国产 | 最新版天堂资源中文官网 | 国产9 9在线 | 中文 | 国产疯狂伦交大片 | 扒开双腿疯狂进出爽爽爽视频 | 18无码粉嫩小泬无套在线观看 | 国产真实乱对白精彩久久 | 国产疯狂伦交大片 | 国产成人无码a区在线观看视频app | 久青草影院在线观看国产 | 图片区 小说区 区 亚洲五月 | 亚洲码国产精品高潮在线 | 人人妻人人澡人人爽欧美精品 | 2020久久香蕉国产线看观看 | 久久精品国产日本波多野结衣 | 亚洲小说春色综合另类 | 日本精品久久久久中文字幕 | 国产精品久久精品三级 | 国产av人人夜夜澡人人爽麻豆 | 国产一区二区三区影院 | 亚洲一区二区三区无码久久 | 国产又爽又猛又粗的视频a片 | 领导边摸边吃奶边做爽在线观看 | 强奷人妻日本中文字幕 | 欧美精品无码一区二区三区 | 露脸叫床粗话东北少妇 | 精品久久8x国产免费观看 | 亚洲国产av美女网站 | 亚洲国精产品一二二线 | 亚洲国产午夜精品理论片 | 亚洲aⅴ无码成人网站国产app | 中文字幕无码日韩欧毛 | 亚洲精品午夜无码电影网 | 国产婷婷色一区二区三区在线 | 九九综合va免费看 | 国产成人精品久久亚洲高清不卡 | 亚洲国产精品成人久久蜜臀 | 两性色午夜免费视频 | 日本熟妇浓毛 | 日韩精品久久久肉伦网站 | 久青草影院在线观看国产 | 国产尤物精品视频 | 性欧美熟妇videofreesex | 成熟妇人a片免费看网站 | 麻豆国产人妻欲求不满谁演的 | 亚洲欧美日韩综合久久久 | 好屌草这里只有精品 | 日韩精品乱码av一区二区 | 国产激情综合五月久久 | 国产成人综合美国十次 | 精品久久久无码人妻字幂 | 在线亚洲高清揄拍自拍一品区 | 55夜色66夜色国产精品视频 | 欧美 丝袜 自拍 制服 另类 | 亚洲码国产精品高潮在线 | 成人无码视频在线观看网站 | 亚洲精品国产精品乱码视色 | 蜜臀aⅴ国产精品久久久国产老师 | 免费观看黄网站 | 伊人久久大香线蕉午夜 | 免费视频欧美无人区码 | 成人综合网亚洲伊人 | 久久精品99久久香蕉国产色戒 | 美女毛片一区二区三区四区 | 国产成人综合色在线观看网站 | 97人妻精品一区二区三区 | 国产精品丝袜黑色高跟鞋 | 天天综合网天天综合色 | 欧美熟妇另类久久久久久多毛 | 中文字幕乱码人妻二区三区 | 四虎国产精品一区二区 | 久久天天躁狠狠躁夜夜免费观看 | 风流少妇按摩来高潮 | 97精品国产97久久久久久免费 | 人人妻人人澡人人爽欧美一区九九 | 成人精品一区二区三区中文字幕 | 疯狂三人交性欧美 | 亲嘴扒胸摸屁股激烈网站 | 国产亲子乱弄免费视频 | 久久99国产综合精品 | av无码不卡在线观看免费 | 亚洲aⅴ无码成人网站国产app | 中文毛片无遮挡高清免费 | 一本大道伊人av久久综合 | 日本精品久久久久中文字幕 | 国产精品igao视频网 | 激情综合激情五月俺也去 | 午夜性刺激在线视频免费 | 最新国产麻豆aⅴ精品无码 | 东京热男人av天堂 | 久久久久免费精品国产 | 国产熟妇另类久久久久 | 丰满肥臀大屁股熟妇激情视频 | 成人精品一区二区三区中文字幕 | 国产激情精品一区二区三区 | 亚洲精品午夜无码电影网 | 老子影院午夜伦不卡 | 少女韩国电视剧在线观看完整 | 扒开双腿疯狂进出爽爽爽视频 | 久久久国产精品无码免费专区 | 久久99精品国产麻豆蜜芽 | 国产成人无码午夜视频在线观看 | 天堂а√在线中文在线 | 亚洲自偷精品视频自拍 | 精品一区二区不卡无码av | 国产精品久久久久久久9999 | 免费看少妇作爱视频 | 久久久精品456亚洲影院 | 人妻无码αv中文字幕久久琪琪布 | 亚洲精品一区二区三区大桥未久 | 特黄特色大片免费播放器图片 | 亚洲精品国产精品乱码视色 | 俺去俺来也在线www色官网 | 欧洲精品码一区二区三区免费看 | 狠狠躁日日躁夜夜躁2020 | 成人欧美一区二区三区 | 国精产品一区二区三区 | 性生交片免费无码看人 | 国内精品久久毛片一区二区 | 久久综合激激的五月天 | 久久无码中文字幕免费影院蜜桃 | 国产一区二区三区精品视频 | 国产精品亚洲а∨无码播放麻豆 | 亚洲精品午夜无码电影网 | 欧美黑人性暴力猛交喷水 | 午夜熟女插插xx免费视频 | 亚洲国产精品久久久天堂 | 欧美激情综合亚洲一二区 | 中文精品久久久久人妻不卡 | а天堂中文在线官网 | 图片小说视频一区二区 | 天堂久久天堂av色综合 | 内射老妇bbwx0c0ck | 国产精品久久久久9999小说 | 巨爆乳无码视频在线观看 | 中文无码精品a∨在线观看不卡 | 亚洲成a人片在线观看日本 | 国产农村乱对白刺激视频 | 偷窥日本少妇撒尿chinese | 精品少妇爆乳无码av无码专区 | 久久精品国产精品国产精品污 | 露脸叫床粗话东北少妇 | 精品无码一区二区三区的天堂 | 成人欧美一区二区三区黑人免费 | 无遮挡啪啪摇乳动态图 | 中文字幕乱码人妻无码久久 | 久久久精品欧美一区二区免费 | 久青草影院在线观看国产 | 国产欧美熟妇另类久久久 | 国产电影无码午夜在线播放 | 在线天堂新版最新版在线8 | 免费无码肉片在线观看 | 亚洲码国产精品高潮在线 | 一本色道久久综合亚洲精品不卡 | 蜜桃臀无码内射一区二区三区 | 国产疯狂伦交大片 | 强辱丰满人妻hd中文字幕 | 国产女主播喷水视频在线观看 | 日韩欧美成人免费观看 | 国产在线aaa片一区二区99 | 午夜福利电影 | 在线a亚洲视频播放在线观看 | 久久久久免费看成人影片 | 成人一在线视频日韩国产 | 亚洲春色在线视频 | 少妇久久久久久人妻无码 | 国产精品-区区久久久狼 | 黑人巨大精品欧美黑寡妇 | 乱人伦中文视频在线观看 | 国产麻豆精品一区二区三区v视界 | 国产97色在线 | 免 | 欧美放荡的少妇 | 亚洲无人区午夜福利码高清完整版 | 久久国产精品偷任你爽任你 | 国产人妖乱国产精品人妖 | 亚洲无人区午夜福利码高清完整版 | 欧美日韩一区二区综合 | 粗大的内捧猛烈进出视频 | 亚洲精品成人福利网站 | 亚洲精品一区三区三区在线观看 | 亚洲成av人片在线观看无码不卡 | 精品少妇爆乳无码av无码专区 | 99久久99久久免费精品蜜桃 | 熟女少妇在线视频播放 | 中文无码伦av中文字幕 | 色综合天天综合狠狠爱 | 日日躁夜夜躁狠狠躁 | 日产精品99久久久久久 | 全黄性性激高免费视频 | 熟妇人妻无乱码中文字幕 | 亚洲国产成人a精品不卡在线 | 精品亚洲成av人在线观看 | 久久精品成人欧美大片 | 乱码午夜-极国产极内射 | 麻豆果冻传媒2021精品传媒一区下载 | 中文字幕+乱码+中文字幕一区 | aⅴ亚洲 日韩 色 图网站 播放 | 无码人妻精品一区二区三区不卡 | 成人欧美一区二区三区黑人免费 | 波多野结衣高清一区二区三区 | 人人妻人人澡人人爽人人精品浪潮 | 永久黄网站色视频免费直播 | 搡女人真爽免费视频大全 | 国产成人综合在线女婷五月99播放 | 国产特级毛片aaaaaaa高清 | 国产欧美精品一区二区三区 | 欧美 日韩 人妻 高清 中文 | 国产情侣作爱视频免费观看 | 麻豆国产97在线 | 欧洲 | 蜜臀av无码人妻精品 | 色综合久久久无码网中文 | 人妻少妇精品视频专区 | 荫蒂被男人添的好舒服爽免费视频 | 99久久久无码国产精品免费 | 国产高清av在线播放 | 美女扒开屁股让男人桶 | 国产亚洲精品久久久久久久久动漫 | 欧美日韩久久久精品a片 | 亚洲中文字幕在线无码一区二区 | 大地资源中文第3页 | 久久婷婷五月综合色国产香蕉 | 东京无码熟妇人妻av在线网址 | 国产在线一区二区三区四区五区 | 亚洲中文字幕无码一久久区 | 成人性做爰aaa片免费看 | 国产成人久久精品流白浆 | 熟妇人妻无码xxx视频 | 国产熟妇高潮叫床视频播放 | 久久国产36精品色熟妇 | 亚洲热妇无码av在线播放 | 高中生自慰www网站 | 偷窥日本少妇撒尿chinese | 男女猛烈xx00免费视频试看 | 亚洲精品国产a久久久久久 | 国产无遮挡吃胸膜奶免费看 | 国产精品美女久久久 | 中文字幕无码人妻少妇免费 | 疯狂三人交性欧美 | 亚洲经典千人经典日产 | 国产午夜手机精彩视频 | 丝袜人妻一区二区三区 | 日日摸日日碰夜夜爽av | 真人与拘做受免费视频 | 欧美激情内射喷水高潮 | 精品乱子伦一区二区三区 | 又大又硬又黄的免费视频 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 久精品国产欧美亚洲色aⅴ大片 | 国产精品无码一区二区桃花视频 | 欧美激情内射喷水高潮 | 国产精品办公室沙发 | а√天堂www在线天堂小说 | 国产激情无码一区二区app | 欧美性黑人极品hd | 国产成人一区二区三区在线观看 | 又黄又爽又色的视频 | 性做久久久久久久久 | 免费人成在线视频无码 | 色综合久久网 | 搡女人真爽免费视频大全 | 风流少妇按摩来高潮 | 亚洲а∨天堂久久精品2021 | 亚洲精品国产精品乱码视色 | 夜夜躁日日躁狠狠久久av | 精品亚洲韩国一区二区三区 | 日日鲁鲁鲁夜夜爽爽狠狠 | 樱花草在线播放免费中文 | 国产亚洲精品久久久久久久久动漫 | 国产精品国产自线拍免费软件 | 成人免费视频视频在线观看 免费 | 天天摸天天透天天添 | 波多野结衣高清一区二区三区 | 国产精品久久久久7777 | 亚洲一区二区三区 | 亚洲人成影院在线无码按摩店 | 免费人成网站视频在线观看 | 综合激情五月综合激情五月激情1 | 久久久久久九九精品久 | 麻豆国产丝袜白领秘书在线观看 | 精品偷自拍另类在线观看 | 无码精品国产va在线观看dvd | 奇米影视7777久久精品 | а√天堂www在线天堂小说 | 精品国产av色一区二区深夜久久 | 99久久精品国产一区二区蜜芽 | 一个人看的www免费视频在线观看 | 国产激情综合五月久久 | 国产精品a成v人在线播放 | 99精品无人区乱码1区2区3区 | 免费无码一区二区三区蜜桃大 | 国产xxx69麻豆国语对白 | 国产无套粉嫩白浆在线 | 精品国产一区二区三区四区 | 亚洲中文字幕在线无码一区二区 | 无码免费一区二区三区 | 久久久av男人的天堂 | 无套内射视频囯产 | 日韩精品一区二区av在线 | 俺去俺来也www色官网 | 亚洲午夜无码久久 | 亚洲欧美日韩国产精品一区二区 | 国产亲子乱弄免费视频 | 性欧美大战久久久久久久 | 亚洲精品国产a久久久久久 | 亚洲成a人片在线观看无码 | 久久精品99久久香蕉国产色戒 | 国产97色在线 | 免 | 亚洲欧美中文字幕5发布 | 欧美人与动性行为视频 | 国产精品国产三级国产专播 | 中文字幕亚洲情99在线 | 中文无码伦av中文字幕 | 亚洲日韩中文字幕在线播放 | 久久久久免费精品国产 | 精品国产一区av天美传媒 | 午夜肉伦伦影院 | 国产精品亚洲lv粉色 | 国产激情无码一区二区app | 久久99热只有频精品8 | 俺去俺来也在线www色官网 | 99久久人妻精品免费二区 | 亚洲精品无码人妻无码 | 人人妻人人澡人人爽欧美精品 | 国产午夜无码视频在线观看 | 麻豆av传媒蜜桃天美传媒 | 粉嫩少妇内射浓精videos | 久久久久国色av免费观看性色 | 荫蒂添的好舒服视频囗交 | 免费播放一区二区三区 | 久久国产精品二国产精品 | 曰本女人与公拘交酡免费视频 | 亚洲中文字幕久久无码 | 国产熟妇另类久久久久 | 亚洲国产精品无码久久久久高潮 | 亚洲精品鲁一鲁一区二区三区 | 极品嫩模高潮叫床 | 国产无套内射久久久国产 | 十八禁真人啪啪免费网站 | 大地资源网第二页免费观看 | 成人试看120秒体验区 | 国产精品99爱免费视频 | 一区二区三区乱码在线 | 欧洲 | 99久久99久久免费精品蜜桃 | 99精品久久毛片a片 | 女人被爽到呻吟gif动态图视看 | 九九久久精品国产免费看小说 | 人妻少妇精品无码专区动漫 | 一本一道久久综合久久 | 日本熟妇乱子伦xxxx | 特级做a爰片毛片免费69 | 熟女少妇人妻中文字幕 | 人妻有码中文字幕在线 | 99久久99久久免费精品蜜桃 | 欧美阿v高清资源不卡在线播放 | 激情内射日本一区二区三区 | 国产农村乱对白刺激视频 | 三上悠亚人妻中文字幕在线 | 日韩精品无码一区二区中文字幕 | 大地资源中文第3页 | 色综合久久中文娱乐网 | 大屁股大乳丰满人妻 | 一本无码人妻在中文字幕免费 | 欧美性生交活xxxxxdddd | 少妇一晚三次一区二区三区 | 丰满诱人的人妻3 | 1000部啪啪未满十八勿入下载 | 亚洲中文字幕成人无码 | 国产又爽又黄又刺激的视频 | 精品日本一区二区三区在线观看 | 999久久久国产精品消防器材 | 97色伦图片97综合影院 | 熟女俱乐部五十路六十路av | 亚洲色www成人永久网址 | 人妻夜夜爽天天爽三区 | 欧美国产亚洲日韩在线二区 | 欧美国产日韩亚洲中文 | 久久精品人妻少妇一区二区三区 | 97人妻精品一区二区三区 | 国内精品人妻无码久久久影院 | 欧美野外疯狂做受xxxx高潮 | 色 综合 欧美 亚洲 国产 | 曰韩无码二三区中文字幕 | 狠狠躁日日躁夜夜躁2020 | a在线观看免费网站大全 | 大胆欧美熟妇xx | 久久午夜无码鲁丝片午夜精品 | 国产精品无套呻吟在线 | 亚洲色无码一区二区三区 | 久久99久久99精品中文字幕 | 色婷婷欧美在线播放内射 | 成人一区二区免费视频 | 丰满诱人的人妻3 | v一区无码内射国产 | 久久精品女人天堂av免费观看 | 国产 精品 自在自线 | 成人欧美一区二区三区黑人免费 | 国产精品高潮呻吟av久久 | 久久 国产 尿 小便 嘘嘘 | 中文字幕日韩精品一区二区三区 | 欧美午夜特黄aaaaaa片 | 久久人人爽人人人人片 | 久久国产自偷自偷免费一区调 | 成 人影片 免费观看 | 东京无码熟妇人妻av在线网址 | 亚洲成av人影院在线观看 | 大地资源中文第3页 | 日韩视频 中文字幕 视频一区 | 奇米影视888欧美在线观看 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 精品人妻人人做人人爽 | 麻豆精产国品 | 久久99精品国产麻豆 | 色五月五月丁香亚洲综合网 | 香蕉久久久久久av成人 | 亚洲熟熟妇xxxx | 青青草原综合久久大伊人精品 | 国产成人午夜福利在线播放 | 欧美国产日产一区二区 | 午夜精品久久久久久久久 | 老司机亚洲精品影院无码 | 久久人人97超碰a片精品 | 波多野结衣 黑人 | 狠狠色噜噜狠狠狠7777奇米 | 在线 国产 欧美 亚洲 天堂 | 欧美高清在线精品一区 | 精品亚洲韩国一区二区三区 | 国产精品亚洲а∨无码播放麻豆 | 国产高潮视频在线观看 | 国内老熟妇对白xxxxhd | 国产成人av免费观看 | 黑人大群体交免费视频 | 午夜精品久久久内射近拍高清 | 少妇久久久久久人妻无码 | 亚洲精品综合五月久久小说 | 欧洲美熟女乱又伦 | 国产9 9在线 | 中文 | 久9re热视频这里只有精品 | 三级4级全黄60分钟 | 日日鲁鲁鲁夜夜爽爽狠狠 | 99久久人妻精品免费一区 | 国产亚洲欧美在线专区 | 美女极度色诱视频国产 | 2020久久香蕉国产线看观看 | 中文字幕精品av一区二区五区 | 久久久精品成人免费观看 | 精品国产成人一区二区三区 | 搡女人真爽免费视频大全 | 亚洲日韩av一区二区三区中文 | 性欧美熟妇videofreesex | 国产人成高清在线视频99最全资源 | av无码电影一区二区三区 | 永久免费观看国产裸体美女 | 国产莉萝无码av在线播放 | 欧美自拍另类欧美综合图片区 | 狠狠亚洲超碰狼人久久 | 精品成人av一区二区三区 | 99久久99久久免费精品蜜桃 | 久久天天躁狠狠躁夜夜免费观看 | 久久亚洲日韩精品一区二区三区 | 国产亚洲欧美日韩亚洲中文色 | 中文久久乱码一区二区 | 欧美日韩久久久精品a片 | 又大又硬又黄的免费视频 | 久久成人a毛片免费观看网站 | 久久人妻内射无码一区三区 | 国产熟女一区二区三区四区五区 | 婷婷色婷婷开心五月四房播播 | 亚洲狠狠色丁香婷婷综合 | 亚洲啪av永久无码精品放毛片 | 人妻天天爽夜夜爽一区二区 | 2020最新国产自产精品 | 鲁鲁鲁爽爽爽在线视频观看 | 亚洲国产欧美在线成人 | 国产精品对白交换视频 | 精品久久久中文字幕人妻 | 夜夜夜高潮夜夜爽夜夜爰爰 | 久久久av男人的天堂 | 欧美性生交xxxxx久久久 | 欧美人与禽zoz0性伦交 | 狂野欧美激情性xxxx | www成人国产高清内射 | 我要看www免费看插插视频 | 亚洲综合久久一区二区 | 亚洲午夜福利在线观看 | 久久久久国色av免费观看性色 | 日本一卡2卡3卡四卡精品网站 | 欧美色就是色 | 狠狠色丁香久久婷婷综合五月 | 丰满妇女强制高潮18xxxx | 成人试看120秒体验区 | 欧美freesex黑人又粗又大 | 无码人妻久久一区二区三区不卡 | 九九久久精品国产免费看小说 | 麻豆精产国品 | 国产偷抇久久精品a片69 | 国产猛烈高潮尖叫视频免费 | 日韩亚洲欧美中文高清在线 | 99精品久久毛片a片 | 极品嫩模高潮叫床 | 天天躁夜夜躁狠狠是什么心态 | av无码不卡在线观看免费 | 妺妺窝人体色www在线小说 | 老头边吃奶边弄进去呻吟 | 久久aⅴ免费观看 | 骚片av蜜桃精品一区 | 国精产品一品二品国精品69xx | 最近的中文字幕在线看视频 | 成人影院yy111111在线观看 | 一本大道久久东京热无码av | 亚洲精品国产品国语在线观看 | 伊人久久大香线焦av综合影院 | 又粗又大又硬又长又爽 | 国产精品久久久午夜夜伦鲁鲁 | 国产综合在线观看 | 中文久久乱码一区二区 | 高潮毛片无遮挡高清免费视频 | 欧美怡红院免费全部视频 | 欧美日韩亚洲国产精品 | 成 人影片 免费观看 | 亚洲无人区一区二区三区 | 国产深夜福利视频在线 | 欧洲欧美人成视频在线 | 香港三级日本三级妇三级 | аⅴ资源天堂资源库在线 | 欧美 丝袜 自拍 制服 另类 | 亚洲の无码国产の无码影院 | 国产精品久久久久9999小说 | 免费人成在线视频无码 | 中文字幕久久久久人妻 | 色五月五月丁香亚洲综合网 | 午夜精品一区二区三区在线观看 | 久久久中文字幕日本无吗 | 黑人玩弄人妻中文在线 | 超碰97人人射妻 | 国产精品理论片在线观看 | 亚洲 日韩 欧美 成人 在线观看 | 国产农村乱对白刺激视频 | 欧美人与牲动交xxxx | 中文字幕无码免费久久9一区9 | 女人被爽到呻吟gif动态图视看 | 午夜理论片yy44880影院 | 亚洲精品一区二区三区四区五区 | 性史性农村dvd毛片 | 国内丰满熟女出轨videos | 无码人妻丰满熟妇区五十路百度 | 国产三级久久久精品麻豆三级 | 在线精品亚洲一区二区 | 国产精品亚洲一区二区三区喷水 | 免费人成在线观看网站 | 日韩精品久久久肉伦网站 | 亚洲啪av永久无码精品放毛片 | 精品日本一区二区三区在线观看 | 极品嫩模高潮叫床 | 精品午夜福利在线观看 | 无码任你躁久久久久久久 | 国产 浪潮av性色四虎 | 麻豆人妻少妇精品无码专区 | 国产精品无码永久免费888 | 久久久久99精品成人片 | 好男人社区资源 | 好爽又高潮了毛片免费下载 | 国产另类ts人妖一区二区 | 超碰97人人做人人爱少妇 | 98国产精品综合一区二区三区 | 国产免费久久久久久无码 | 综合网日日天干夜夜久久 | 1000部夫妻午夜免费 | 国产精品-区区久久久狼 | 国产尤物精品视频 | 97精品国产97久久久久久免费 | 老子影院午夜精品无码 | 全球成人中文在线 | 亚洲爆乳大丰满无码专区 | 少妇无码一区二区二三区 | 国产凸凹视频一区二区 | 蜜臀av在线播放 久久综合激激的五月天 | 国产激情综合五月久久 | 熟妇人妻无码xxx视频 | 亚洲午夜福利在线观看 | 精品国产乱码久久久久乱码 | 免费无码av一区二区 | 国产亚洲视频中文字幕97精品 | 午夜福利试看120秒体验区 | 中文字幕无码av激情不卡 | aⅴ在线视频男人的天堂 | 亚洲国产av精品一区二区蜜芽 | 四十如虎的丰满熟妇啪啪 | 强开小婷嫩苞又嫩又紧视频 | 久久久久人妻一区精品色欧美 | 精品人妻av区 | aa片在线观看视频在线播放 | 强辱丰满人妻hd中文字幕 | 久久久久成人精品免费播放动漫 | 中文字幕人成乱码熟女app | 亚洲精品鲁一鲁一区二区三区 | 国产人妻久久精品二区三区老狼 | 欧美老熟妇乱xxxxx | 国产精品人人爽人人做我的可爱 | 国产真实伦对白全集 | 国产人妻人伦精品1国产丝袜 | 帮老师解开蕾丝奶罩吸乳网站 | 成在人线av无码免费 | 国产精品福利视频导航 | 日韩亚洲欧美精品综合 | 性史性农村dvd毛片 | 午夜精品久久久内射近拍高清 | 成人av无码一区二区三区 | 日本大香伊一区二区三区 | 无人区乱码一区二区三区 | 中文久久乱码一区二区 | 丰满妇女强制高潮18xxxx | 人妻天天爽夜夜爽一区二区 | 国产艳妇av在线观看果冻传媒 | 正在播放老肥熟妇露脸 | 日韩在线不卡免费视频一区 | 无码人妻黑人中文字幕 | 精品一二三区久久aaa片 | 人人妻人人澡人人爽欧美一区 | 性色欲网站人妻丰满中文久久不卡 | 久久亚洲中文字幕精品一区 | 4hu四虎永久在线观看 | 久久国内精品自在自线 | 国产高清不卡无码视频 | 国产两女互慰高潮视频在线观看 | 久久久久se色偷偷亚洲精品av | 女人色极品影院 | 欧美熟妇另类久久久久久多毛 | 成年女人永久免费看片 | 中文字幕无码热在线视频 | 一本大道久久东京热无码av | 中文字幕+乱码+中文字幕一区 | 国产av久久久久精东av | 国内精品人妻无码久久久影院 | 装睡被陌生人摸出水好爽 | 中文字幕无码日韩欧毛 | 在教室伦流澡到高潮hnp视频 | 欧美精品国产综合久久 | 国产真实夫妇视频 | 久久综合香蕉国产蜜臀av | а√资源新版在线天堂 | 亚洲综合久久一区二区 | 国产精品.xx视频.xxtv | 久久国内精品自在自线 | 永久免费观看美女裸体的网站 | 欧美日本精品一区二区三区 | 国产激情无码一区二区app | 成人无码精品1区2区3区免费看 | 国产免费久久久久久无码 | 97人妻精品一区二区三区 | а√天堂www在线天堂小说 | 亚洲综合在线一区二区三区 | 久激情内射婷内射蜜桃人妖 | 亚洲欧洲日本无在线码 | 麻豆国产人妻欲求不满谁演的 | 久久 国产 尿 小便 嘘嘘 | 精品aⅴ一区二区三区 | 成年美女黄网站色大免费全看 | 日韩成人一区二区三区在线观看 | 国产av剧情md精品麻豆 | 欧美国产日产一区二区 | 国产午夜亚洲精品不卡 | 波多野42部无码喷潮在线 | 久青草影院在线观看国产 | 中文字幕av无码一区二区三区电影 | 国产女主播喷水视频在线观看 | 2019nv天堂香蕉在线观看 | 国产国语老龄妇女a片 | 久久久久久久人妻无码中文字幕爆 | 久久久久成人片免费观看蜜芽 | 一本久久a久久精品亚洲 | 中文字幕 亚洲精品 第1页 | 欧美性猛交内射兽交老熟妇 | 亚洲国产精品无码久久久久高潮 | 天堂а√在线地址中文在线 | 国产精品亚洲一区二区三区喷水 | 中国女人内谢69xxxxxa片 | 中文字幕乱码中文乱码51精品 | 国产精品久久久午夜夜伦鲁鲁 | 亚洲欧洲无卡二区视頻 | 一个人免费观看的www视频 | 精品人妻人人做人人爽 | 日本熟妇人妻xxxxx人hd | 久久国产精品二国产精品 | 天干天干啦夜天干天2017 | 午夜性刺激在线视频免费 | 亚洲自偷精品视频自拍 | 亚洲自偷自偷在线制服 | 久久久久av无码免费网 | 久久人人97超碰a片精品 | 久久综合狠狠综合久久综合88 | 99久久99久久免费精品蜜桃 | 国产又爽又猛又粗的视频a片 | 高潮毛片无遮挡高清免费视频 | 成人精品一区二区三区中文字幕 | 成人欧美一区二区三区 | 四虎4hu永久免费 | 亚洲成a人片在线观看日本 | 狠狠噜狠狠狠狠丁香五月 | 中文精品无码中文字幕无码专区 | 成人无码影片精品久久久 | 无人区乱码一区二区三区 | 色诱久久久久综合网ywww | 一本久久伊人热热精品中文字幕 | 人人妻人人澡人人爽人人精品浪潮 | 国产成人无码av片在线观看不卡 | 2020最新国产自产精品 | 中文无码精品a∨在线观看不卡 | 乌克兰少妇xxxx做受 | 午夜不卡av免费 一本久久a久久精品vr综合 | 日本熟妇乱子伦xxxx | 国产精品丝袜黑色高跟鞋 | 国产激情艳情在线看视频 | 国内综合精品午夜久久资源 | 中文字幕无码免费久久99 | 欧美熟妇另类久久久久久多毛 | 亚洲中文无码av永久不收费 | 亚洲日韩av片在线观看 | 自拍偷自拍亚洲精品10p | 欧美人与禽zoz0性伦交 | 亚洲 欧美 激情 小说 另类 | 一本色道婷婷久久欧美 | 精品无码国产自产拍在线观看蜜 | 久久综合久久自在自线精品自 | 久久久久久久人妻无码中文字幕爆 | 国产福利视频一区二区 | 国产成人综合在线女婷五月99播放 | 图片区 小说区 区 亚洲五月 | 国产精品第一区揄拍无码 | 欧美老妇交乱视频在线观看 | www国产亚洲精品久久久日本 | 无码av最新清无码专区吞精 | 日本丰满熟妇videos | 亚洲日韩av一区二区三区四区 | 窝窝午夜理论片影院 | 亚洲另类伦春色综合小说 | 午夜理论片yy44880影院 | 精品 日韩 国产 欧美 视频 | 欧美国产日韩久久mv | 秋霞成人午夜鲁丝一区二区三区 | 亲嘴扒胸摸屁股激烈网站 | 国产精品久久国产精品99 | 久久亚洲日韩精品一区二区三区 | 日本护士毛茸茸高潮 | 一本加勒比波多野结衣 | 在线天堂新版最新版在线8 | 国产成人无码av一区二区 | 偷窥日本少妇撒尿chinese | 久久99精品国产麻豆 | 色综合久久久久综合一本到桃花网 | 国产精品福利视频导航 | 亚洲狠狠色丁香婷婷综合 | 乱人伦人妻中文字幕无码 | 日韩成人一区二区三区在线观看 | 久久99久久99精品中文字幕 | 久久久www成人免费毛片 | 精品无码国产一区二区三区av | 亚洲中文无码av永久不收费 | 男女猛烈xx00免费视频试看 | 国产精品福利视频导航 | 成人欧美一区二区三区黑人 | 久在线观看福利视频 | 国产人成高清在线视频99最全资源 | 色综合天天综合狠狠爱 | 装睡被陌生人摸出水好爽 | 亚洲精品一区二区三区四区五区 | 水蜜桃av无码 | 亚洲综合精品香蕉久久网 | 欧美日韩一区二区免费视频 | 国产小呦泬泬99精品 | 男女性色大片免费网站 | 久精品国产欧美亚洲色aⅴ大片 | 欧美成人高清在线播放 | 国产一精品一av一免费 | 无码av岛国片在线播放 | 亚洲一区二区三区播放 | 少妇性l交大片欧洲热妇乱xxx | 人妻无码αv中文字幕久久琪琪布 | 亚洲欧美色中文字幕在线 | 亚洲一区二区三区含羞草 | 风流少妇按摩来高潮 | 亚洲国产成人av在线观看 | 国产超碰人人爽人人做人人添 | 久久人妻内射无码一区三区 | 国产艳妇av在线观看果冻传媒 | 漂亮人妻洗澡被公强 日日躁 | 99久久人妻精品免费二区 | 免费观看激色视频网站 | 欧美日韩综合一区二区三区 | 成人无码视频免费播放 | 99精品视频在线观看免费 | 一个人免费观看的www视频 | 成人aaa片一区国产精品 | 性欧美疯狂xxxxbbbb | 四虎永久在线精品免费网址 | 成人无码视频免费播放 | 日韩成人一区二区三区在线观看 | 日韩欧美中文字幕在线三区 | 精品欧美一区二区三区久久久 | 无码国内精品人妻少妇 | 日韩精品无码免费一区二区三区 | 亚洲中文字幕无码中文字在线 | 亚洲 高清 成人 动漫 | 久久精品中文字幕一区 | 国产午夜无码精品免费看 | 乱人伦人妻中文字幕无码 | 亚洲精品国产精品乱码不卡 | 欧美日韩精品 | 精品国产一区二区三区四区在线看 | 亚洲娇小与黑人巨大交 | 国产精品久久久久影院嫩草 | 国产97人人超碰caoprom | 午夜肉伦伦影院 | 51国偷自产一区二区三区 | 亚洲成av人综合在线观看 | 老司机亚洲精品影院 | 国产精品办公室沙发 | 成人免费视频一区二区 | 中文字幕精品av一区二区五区 | 中文字幕日韩精品一区二区三区 | 亚洲区小说区激情区图片区 | 乱人伦人妻中文字幕无码 | 国产成人一区二区三区别 | 国产精品毛多多水多 | 国内少妇偷人精品视频免费 | 国产成人av免费观看 | 亚洲gv猛男gv无码男同 | 成人精品天堂一区二区三区 | 乱人伦人妻中文字幕无码 | 亚洲一区二区三区香蕉 | 色欲人妻aaaaaaa无码 | 无码精品人妻一区二区三区av | 国产精品亚洲综合色区韩国 | 国产成人精品必看 | 国产精品久久久久久亚洲毛片 | 99精品无人区乱码1区2区3区 | 精品国产一区二区三区av 性色 | 少妇无码av无码专区在线观看 | 国产精品国产三级国产专播 | 国产特级毛片aaaaaa高潮流水 | 国产美女精品一区二区三区 | 98国产精品综合一区二区三区 | 少妇高潮喷潮久久久影院 | 好爽又高潮了毛片免费下载 | 人妻少妇精品无码专区二区 | 人人澡人人妻人人爽人人蜜桃 | 国产明星裸体无码xxxx视频 | 亚洲精品欧美二区三区中文字幕 | 国产激情艳情在线看视频 | 亚洲精品成人av在线 | 老熟女重囗味hdxx69 | 午夜福利试看120秒体验区 | 久久精品国产99精品亚洲 | 欧美 丝袜 自拍 制服 另类 | 好男人社区资源 | 久久久中文字幕日本无吗 | 99久久99久久免费精品蜜桃 | 国产熟妇另类久久久久 | аⅴ资源天堂资源库在线 | 日本熟妇大屁股人妻 | 久久久精品人妻久久影视 | 97久久国产亚洲精品超碰热 | 欧美黑人巨大xxxxx | 亚洲伊人久久精品影院 | 黑人巨大精品欧美黑寡妇 | 中文字幕无码视频专区 | 久久 国产 尿 小便 嘘嘘 | 人妻少妇精品久久 | 日本精品久久久久中文字幕 | 欧美一区二区三区视频在线观看 | 亚洲成在人网站无码天堂 | 成人av无码一区二区三区 | 一本久久a久久精品vr综合 | 樱花草在线社区www | 亚洲人成人无码网www国产 | 无码人妻精品一区二区三区不卡 | 中文久久乱码一区二区 | 亚洲综合无码久久精品综合 | 网友自拍区视频精品 | 国产亚洲欧美在线专区 | 亚洲精品国偷拍自产在线麻豆 | 好爽又高潮了毛片免费下载 | 成人试看120秒体验区 | 无码国模国产在线观看 | 精品久久久久香蕉网 | 任你躁国产自任一区二区三区 | 九九在线中文字幕无码 | 鲁一鲁av2019在线 | 亚洲中文字幕久久无码 | 久久人人爽人人爽人人片av高清 | 午夜福利不卡在线视频 | 国产免费观看黄av片 | 国产高潮视频在线观看 | 国产麻豆精品精东影业av网站 | 亚欧洲精品在线视频免费观看 | 欧美色就是色 | 色婷婷av一区二区三区之红樱桃 | 动漫av网站免费观看 | 蜜臀aⅴ国产精品久久久国产老师 | v一区无码内射国产 | 国产明星裸体无码xxxx视频 | 亚洲国产精品无码久久久久高潮 | 国产9 9在线 | 中文 | 国产国语老龄妇女a片 | 欧美zoozzooz性欧美 | 午夜性刺激在线视频免费 | 国产97人人超碰caoprom | 国产精品手机免费 | 精品熟女少妇av免费观看 | 高中生自慰www网站 | 伊人久久大香线蕉亚洲 | 超碰97人人做人人爱少妇 | 麻豆人妻少妇精品无码专区 | 色综合久久久无码中文字幕 | 久久国产精品萌白酱免费 | 丰满诱人的人妻3 | 西西人体www44rt大胆高清 | 免费无码一区二区三区蜜桃大 | 精品久久久久久亚洲精品 | 亚洲欧美精品aaaaaa片 | 天下第一社区视频www日本 | 亚洲精品成a人在线观看 | 国产精品高潮呻吟av久久 | 爽爽影院免费观看 | 亚洲精品综合一区二区三区在线 | 日日夜夜撸啊撸 | 97se亚洲精品一区 | 九一九色国产 | 国产精品久久久av久久久 | 国产精品内射视频免费 | 免费看少妇作爱视频 | 国产无遮挡又黄又爽免费视频 | 中文字幕日产无线码一区 | 伊人久久婷婷五月综合97色 | 欧美老妇与禽交 | 国产精品福利视频导航 | 中文亚洲成a人片在线观看 | 东京热无码av男人的天堂 | 亚洲中文字幕乱码av波多ji | 正在播放老肥熟妇露脸 | 久久精品国产一区二区三区肥胖 | 国产综合久久久久鬼色 | 国产国语老龄妇女a片 | 精品无码一区二区三区的天堂 | 日本精品人妻无码免费大全 | 十八禁真人啪啪免费网站 | 少妇性l交大片 | 免费人成在线视频无码 | 国模大胆一区二区三区 | 超碰97人人射妻 | 色婷婷综合中文久久一本 | 97精品国产97久久久久久免费 | 国产网红无码精品视频 | 99精品视频在线观看免费 | 无码国产色欲xxxxx视频 | 国产香蕉尹人综合在线观看 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 日日鲁鲁鲁夜夜爽爽狠狠 | 国产真人无遮挡作爱免费视频 | 久久综合香蕉国产蜜臀av | 大地资源网第二页免费观看 | 欧美人与牲动交xxxx | 欧洲欧美人成视频在线 | 欧美阿v高清资源不卡在线播放 | 十八禁视频网站在线观看 | 欧美自拍另类欧美综合图片区 | 日本爽爽爽爽爽爽在线观看免 | 99久久无码一区人妻 | 77777熟女视频在线观看 а天堂中文在线官网 | 性色av无码免费一区二区三区 | 国产真实乱对白精彩久久 | 九九综合va免费看 | 特级做a爰片毛片免费69 | 东京热无码av男人的天堂 | 成人精品一区二区三区中文字幕 | 亚洲国产成人a精品不卡在线 | 欧美日韩视频无码一区二区三 | 未满小14洗澡无码视频网站 | 粉嫩少妇内射浓精videos | 激情内射日本一区二区三区 | 日本丰满护士爆乳xxxx | 少妇性俱乐部纵欲狂欢电影 | 日本护士毛茸茸高潮 | 中文精品无码中文字幕无码专区 | 澳门永久av免费网站 | 蜜臀aⅴ国产精品久久久国产老师 | 东京无码熟妇人妻av在线网址 | 激情五月综合色婷婷一区二区 | 99久久久无码国产精品免费 | 精品国产aⅴ无码一区二区 | 色噜噜亚洲男人的天堂 | 亚洲精品国产第一综合99久久 | 中文精品久久久久人妻不卡 | 成人综合网亚洲伊人 | 任你躁国产自任一区二区三区 | 欧美老妇与禽交 | 欧美人与禽zoz0性伦交 | 亚洲性无码av中文字幕 | 亚洲日韩乱码中文无码蜜桃臀网站 | 99久久精品日本一区二区免费 | 波多野结衣高清一区二区三区 | 1000部啪啪未满十八勿入下载 | 一本久久a久久精品亚洲 | 国产午夜福利100集发布 | 中文字幕中文有码在线 | 牛和人交xxxx欧美 | 日本xxxx色视频在线观看免费 | 日韩成人一区二区三区在线观看 | 国产深夜福利视频在线 | 国产亚洲视频中文字幕97精品 | 国产免费无码一区二区视频 | 国产精品久久国产三级国 | 一本久道久久综合婷婷五月 | 久久亚洲精品成人无码 | 久久99精品国产.久久久久 | 人人爽人人澡人人高潮 | 久久久中文字幕日本无吗 | 人人妻人人澡人人爽欧美一区九九 | 丰满人妻一区二区三区免费视频 | 人人澡人人妻人人爽人人蜜桃 | 成人性做爰aaa片免费看不忠 | 国产精品永久免费视频 | 国产日产欧产精品精品app | 波多野结衣av一区二区全免费观看 | 樱花草在线播放免费中文 | 无码av中文字幕免费放 | 国产亚洲人成在线播放 | 精品国偷自产在线视频 | 亚洲第一网站男人都懂 | 欧美国产日韩久久mv | aⅴ亚洲 日韩 色 图网站 播放 | 99久久99久久免费精品蜜桃 | 四虎4hu永久免费 | 久久久久免费看成人影片 | 欧美放荡的少妇 | 日韩人妻无码一区二区三区久久99 | 亚洲成av人影院在线观看 | 亚洲 另类 在线 欧美 制服 | 鲁大师影院在线观看 | 成人片黄网站色大片免费观看 | 波多野结衣高清一区二区三区 | 激情爆乳一区二区三区 | 成熟女人特级毛片www免费 | 在线 国产 欧美 亚洲 天堂 | 国产成人精品久久亚洲高清不卡 | 日本精品人妻无码免费大全 | 欧美老熟妇乱xxxxx | 亚洲人亚洲人成电影网站色 | 亚洲国产精品久久久久久 | 乱人伦人妻中文字幕无码久久网 | 中文字幕av无码一区二区三区电影 | 高清无码午夜福利视频 | 国产在线一区二区三区四区五区 | 天干天干啦夜天干天2017 | 国产猛烈高潮尖叫视频免费 | 亚洲男人av香蕉爽爽爽爽 | 中文精品久久久久人妻不卡 | 色五月五月丁香亚洲综合网 | 色欲综合久久中文字幕网 | 国产高潮视频在线观看 | 久久久久亚洲精品中文字幕 | 国产午夜无码精品免费看 | 国产在线一区二区三区四区五区 | 亚洲成a人片在线观看无码 | 图片区 小说区 区 亚洲五月 | 亚洲欧美国产精品专区久久 | 偷窥日本少妇撒尿chinese | 欧美三级不卡在线观看 | 88国产精品欧美一区二区三区 | 久久综合色之久久综合 | 蜜臀av无码人妻精品 | 国产麻豆精品一区二区三区v视界 | 人人澡人人透人人爽 | 人妻尝试又大又粗久久 | 无码精品人妻一区二区三区av | 骚片av蜜桃精品一区 | 双乳奶水饱满少妇呻吟 | 亚洲欧美综合区丁香五月小说 | 亚洲精品成人av在线 | 六月丁香婷婷色狠狠久久 | 人人爽人人爽人人片av亚洲 | 欧美三级不卡在线观看 | 国产精品二区一区二区aⅴ污介绍 | 男人的天堂av网站 | 午夜熟女插插xx免费视频 | 精品国产国产综合精品 | 性色欲情网站iwww九文堂 | 亚洲精品无码人妻无码 | 久久久久久a亚洲欧洲av冫 | 亚洲色www成人永久网址 | 国产精品资源一区二区 | 国产亚洲精品精品国产亚洲综合 | 一二三四社区在线中文视频 | 国产精品igao视频网 | 国产欧美亚洲精品a | 国产又粗又硬又大爽黄老大爷视 | 国产成人av免费观看 | 亚洲日韩一区二区三区 | 老熟女乱子伦 | 免费人成在线视频无码 | 一个人看的视频www在线 | 久久久久亚洲精品男人的天堂 | 国产综合色产在线精品 | 成年美女黄网站色大免费视频 | 激情爆乳一区二区三区 | 国产9 9在线 | 中文 | 蜜臀aⅴ国产精品久久久国产老师 | 日产国产精品亚洲系列 | 日本xxxx色视频在线观看免费 | 精品国产一区av天美传媒 | 欧美zoozzooz性欧美 | 亚洲成色www久久网站 | 亚洲成av人片天堂网无码】 | 精品日本一区二区三区在线观看 | 伊人久久大香线焦av综合影院 | 性欧美熟妇videofreesex | 黑人粗大猛烈进出高潮视频 | 国产内射老熟女aaaa | 国产va免费精品观看 | 亚洲精品国产精品乱码不卡 | 草草网站影院白丝内射 | 国产av剧情md精品麻豆 | 亚洲乱亚洲乱妇50p | 国产精品成人av在线观看 | 欧美阿v高清资源不卡在线播放 | 福利一区二区三区视频在线观看 | 乱人伦人妻中文字幕无码久久网 | 久在线观看福利视频 | 久久久久久a亚洲欧洲av冫 | 熟妇人妻无乱码中文字幕 | 99久久99久久免费精品蜜桃 | 国产成人无码午夜视频在线观看 | 鲁一鲁av2019在线 | 久久zyz资源站无码中文动漫 | 精品人人妻人人澡人人爽人人 | 国产猛烈高潮尖叫视频免费 | 欧美国产亚洲日韩在线二区 | 网友自拍区视频精品 | 国产精华av午夜在线观看 | 亚洲精品久久久久久一区二区 | 亚洲熟妇色xxxxx欧美老妇y | 99久久精品国产一区二区蜜芽 | 亚洲一区av无码专区在线观看 | 天堂а√在线地址中文在线 | 欧美日韩人成综合在线播放 | 国内综合精品午夜久久资源 | 国内综合精品午夜久久资源 | √8天堂资源地址中文在线 | 成人动漫在线观看 | 无套内谢的新婚少妇国语播放 | 天堂无码人妻精品一区二区三区 | 国产深夜福利视频在线 | 2019nv天堂香蕉在线观看 | 久久视频在线观看精品 | 日韩精品无码免费一区二区三区 | 亚洲日韩av一区二区三区四区 | 亚洲欧美国产精品专区久久 | 国产精品二区一区二区aⅴ污介绍 | 亚洲男女内射在线播放 | 老司机亚洲精品影院无码 | 久久婷婷五月综合色国产香蕉 | 少妇无码一区二区二三区 | 亚洲区小说区激情区图片区 | 精品久久8x国产免费观看 | 亚洲午夜无码久久 | 人妻有码中文字幕在线 | 少妇人妻偷人精品无码视频 | 澳门永久av免费网站 | 国产在线一区二区三区四区五区 | 欧美 日韩 亚洲 在线 | 欧美激情综合亚洲一二区 | 国产亚洲精品久久久ai换 | 久久久国产精品无码免费专区 | 中文亚洲成a人片在线观看 | 好爽又高潮了毛片免费下载 | 国产精品久免费的黄网站 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 国产无遮挡吃胸膜奶免费看 | 奇米影视7777久久精品人人爽 | 一本大道伊人av久久综合 | 在线精品国产一区二区三区 | v一区无码内射国产 | 一个人看的www免费视频在线观看 | 国产真人无遮挡作爱免费视频 | 日本精品人妻无码免费大全 | 兔费看少妇性l交大片免费 | 亚洲精品国偷拍自产在线麻豆 | 内射爽无广熟女亚洲 | 亚洲人亚洲人成电影网站色 | 无码午夜成人1000部免费视频 | 丰满护士巨好爽好大乳 | 国产熟女一区二区三区四区五区 | 精品亚洲韩国一区二区三区 | 成人精品天堂一区二区三区 | 俄罗斯老熟妇色xxxx | 国产在线精品一区二区三区直播 | 亚洲日韩av一区二区三区中文 | 高清国产亚洲精品自在久久 |