2014-01-28 17:38:52 +01:00
|
|
|
# config file for ansible -- http://ansible.com/
|
|
|
|
# ==============================================
|
2013-06-18 19:24:30 +02:00
|
|
|
|
2016-02-25 23:21:28 +01:00
|
|
|
# nearly all parameters can be overridden in ansible-playbook
|
2014-02-14 21:34:58 +01:00
|
|
|
# or with command line flags. ansible will read ANSIBLE_CONFIG,
|
|
|
|
# ansible.cfg in the current working directory, .ansible.cfg in
|
|
|
|
# the home directory or /etc/ansible/ansible.cfg, whichever it
|
|
|
|
# finds first
|
2012-08-14 01:17:14 +02:00
|
|
|
|
|
|
|
[defaults]
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# some basic default values...
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2015-10-31 23:57:27 +01:00
|
|
|
#inventory = /etc/ansible/hosts
|
2015-01-05 17:40:45 +01:00
|
|
|
#library = /usr/share/my_modules/
|
2015-10-31 23:57:27 +01:00
|
|
|
#remote_tmp = $HOME/.ansible/tmp
|
2016-04-06 08:48:37 +02:00
|
|
|
#local_tmp = $HOME/.ansible/tmp
|
2015-10-31 23:57:27 +01:00
|
|
|
#forks = 5
|
|
|
|
#poll_interval = 15
|
|
|
|
#sudo_user = root
|
2013-06-18 19:24:30 +02:00
|
|
|
#ask_sudo_pass = True
|
|
|
|
#ask_pass = True
|
2015-10-31 23:57:27 +01:00
|
|
|
#transport = smart
|
2014-12-16 20:09:42 +01:00
|
|
|
#remote_port = 22
|
2015-10-31 23:57:27 +01:00
|
|
|
#module_lang = C
|
2016-06-15 20:21:04 +02:00
|
|
|
#module_set_locale = False
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2014-03-19 23:02:49 +01:00
|
|
|
# plays will gather facts by default, which contain information about
|
|
|
|
# the remote system.
|
|
|
|
#
|
|
|
|
# smart - gather by default, but don't regather if already gathered
|
|
|
|
# implicit - gather by default, turn off with gather_facts: False
|
|
|
|
# explicit - do not gather by default, must say gather_facts: True
|
2015-10-31 23:57:27 +01:00
|
|
|
#gathering = implicit
|
2014-03-15 21:19:28 +01:00
|
|
|
|
2016-10-08 02:12:50 +02:00
|
|
|
# This only affects the gathering done by a play's gather_facts directive,
|
|
|
|
# by default gathering retrieves all facts subsets
|
2016-03-12 10:22:49 +01:00
|
|
|
# all - gather all subsets
|
|
|
|
# network - gather min and network facts
|
|
|
|
# hardware - gather hardware facts (longest facts to retrieve)
|
|
|
|
# virtual - gather min and virtual facts
|
2016-03-14 22:50:27 +01:00
|
|
|
# facter - import facts from facter
|
|
|
|
# ohai - import facts from ohai
|
|
|
|
# You can combine them using comma (ex: network,virtual)
|
|
|
|
# You can negate them using ! (ex: !hardware,!facter,!ohai)
|
|
|
|
# A minimal set of facts is always gathered.
|
2016-03-12 10:22:49 +01:00
|
|
|
#gather_subset = all
|
|
|
|
|
2016-07-08 23:46:41 +02:00
|
|
|
# some hardware related facts are collected
|
|
|
|
# with a maximum timeout of 10 seconds. This
|
|
|
|
# option lets you increase or decrease that
|
|
|
|
# timeout to something more suitable for the
|
|
|
|
# environment.
|
|
|
|
# gather_timeout = 10
|
|
|
|
|
2014-03-08 11:49:55 +01:00
|
|
|
# additional paths to search for roles in, colon separated
|
2013-10-12 16:15:00 +02:00
|
|
|
#roles_path = /etc/ansible/roles
|
|
|
|
|
2013-07-03 22:47:20 +02:00
|
|
|
# uncomment this to disable SSH key host checking
|
2013-07-03 22:55:10 +02:00
|
|
|
#host_key_checking = False
|
2013-07-03 22:47:20 +02:00
|
|
|
|
2015-07-20 18:27:18 +02:00
|
|
|
# change the default callback
|
2015-10-30 09:51:35 +01:00
|
|
|
#stdout_callback = skippy
|
2015-06-29 19:26:18 +02:00
|
|
|
# enable additional callbacks
|
2015-07-20 18:27:18 +02:00
|
|
|
#callback_whitelist = timer, mail
|
2015-06-29 19:26:18 +02:00
|
|
|
|
2016-01-25 19:04:52 +01:00
|
|
|
# Determine whether includes in tasks and handlers are "static" by
|
|
|
|
# default. As of 2.0, includes are dynamic by default. Setting these
|
|
|
|
# values to True will make includes behave more like they did in the
|
|
|
|
# 1.x versions.
|
|
|
|
#task_includes_static = True
|
|
|
|
#handler_includes_static = True
|
|
|
|
|
2016-10-04 21:41:27 +02:00
|
|
|
# Controls if a missing handler for a notification event is an error or a warning
|
|
|
|
#error_on_missing_handler = True
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# change this for alternative sudo implementations
|
2015-10-31 23:57:27 +01:00
|
|
|
#sudo_exe = sudo
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2015-08-15 18:05:39 +02:00
|
|
|
# What flags to pass to sudo
|
|
|
|
# WARNING: leaving out the defaults might create unexpected behaviours
|
2015-10-28 07:02:43 +01:00
|
|
|
#sudo_flags = -H -S -n
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# SSH timeout
|
2015-10-31 23:57:27 +01:00
|
|
|
#timeout = 10
|
2013-01-23 06:58:16 +01:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# default user to use for playbooks if user is not specified
|
|
|
|
# (/usr/bin/ansible will use current user as default)
|
2013-06-20 22:19:47 +02:00
|
|
|
#remote_user = root
|
2013-01-23 06:58:16 +01:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# logging is off by default unless this path is defined
|
|
|
|
# if so defined, consider logrotate
|
2013-06-20 22:19:47 +02:00
|
|
|
#log_path = /var/log/ansible.log
|
2013-01-28 17:41:43 +01:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# default module name for /usr/bin/ansible
|
2013-06-20 22:19:47 +02:00
|
|
|
#module_name = command
|
2013-04-05 01:39:22 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# use this shell for commands executed under sudo
|
|
|
|
# you may need to change this to bin/bash in rare instances
|
|
|
|
# if sudo is constrained
|
2013-06-20 22:19:47 +02:00
|
|
|
#executable = /bin/sh
|
2013-04-05 01:39:22 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# if inventory variables overlap, does the higher precedence one win
|
|
|
|
# or are hash values merged together? The default is 'replace' but
|
|
|
|
# this can also be set to 'merge'.
|
2013-06-20 22:19:47 +02:00
|
|
|
#hash_behaviour = replace
|
2013-01-23 21:39:34 +01:00
|
|
|
|
2015-07-01 17:32:44 +02:00
|
|
|
# by default, variables from roles will be visible in the global variable
|
|
|
|
# scope. To prevent this, the following option can be enabled, and only
|
|
|
|
# tasks and handlers within the role will see the variables there
|
|
|
|
#private_role_vars = yes
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# list any Jinja2 extensions to enable here:
|
2013-06-20 22:19:47 +02:00
|
|
|
#jinja2_extensions = jinja2.ext.do,jinja2.ext.i18n
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2016-02-25 23:21:28 +01:00
|
|
|
# if set, always use this private key file for authentication, same as
|
2013-06-18 19:24:30 +02:00
|
|
|
# if passing --private-key to ansible or ansible-playbook
|
2013-06-20 22:19:47 +02:00
|
|
|
#private_key_file = /path/to/file
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2016-03-25 03:09:29 +01:00
|
|
|
# If set, configures the path to the Vault password file as an alternative to
|
|
|
|
# specifying --vault-password-file on the command line.
|
|
|
|
#vault_password_file = /path/to/vault_password_file
|
|
|
|
|
2015-07-06 22:48:39 +02:00
|
|
|
# format of string {{ ansible_managed }} available within Jinja2
|
2013-06-18 19:24:30 +02:00
|
|
|
# templates indicates to users editing templates files will be replaced.
|
2013-06-20 21:47:45 +02:00
|
|
|
# replacing {file}, {host} and {uid} and strftime codes with proper values.
|
2015-07-06 22:48:39 +02:00
|
|
|
#ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
|
2016-10-18 22:16:27 +02:00
|
|
|
# {file}, {host}, {uid}, and the timestamp can all interfere with idempotence
|
|
|
|
# in some situations so the default is a static string:
|
|
|
|
#ansible_managed = Ansible managed
|
2012-10-03 15:59:38 +02:00
|
|
|
|
2013-09-26 16:03:23 +02:00
|
|
|
# by default, ansible-playbook will display "Skipping [host]" if it determines a task
|
2016-02-25 23:21:28 +01:00
|
|
|
# should not be run on a host. Set this to "False" if you don't want to see these "Skipping"
|
|
|
|
# messages. NOTE: the task header will still be shown regardless of whether or not the
|
2013-10-01 04:02:09 +02:00
|
|
|
# task is skipped.
|
|
|
|
#display_skipped_hosts = True
|
2013-09-26 16:03:23 +02:00
|
|
|
|
2016-02-18 13:20:35 +01:00
|
|
|
# by default, if a task in a playbook does not include a name: field then
|
|
|
|
# ansible-playbook will construct a header that includes the task's action but
|
|
|
|
# not the task's args. This is a security feature because ansible cannot know
|
|
|
|
# if the *module* considers an argument to be no_log at the time that the
|
|
|
|
# header is printed. If your environment doesn't have a problem securing
|
|
|
|
# stdout from ansible-playbook (or you have manually specified no_log in your
|
|
|
|
# playbook on all of the tasks where you have secret information) then you can
|
|
|
|
# safely set this to True to get more informative messages.
|
|
|
|
#display_args_to_stdout = False
|
|
|
|
|
2016-02-25 23:21:28 +01:00
|
|
|
# by default (as of 1.3), Ansible will raise errors when attempting to dereference
|
2013-08-15 16:25:29 +02:00
|
|
|
# Jinja2 variables that are not set in templates or action lines. Uncomment this line
|
|
|
|
# to revert the behavior to pre-1.3.
|
|
|
|
#error_on_undefined_vars = False
|
2013-06-18 19:31:08 +02:00
|
|
|
|
2014-04-30 21:44:10 +02:00
|
|
|
# by default (as of 1.6), Ansible may display warnings based on the configuration of the
|
|
|
|
# system running ansible itself. This may include warnings about 3rd party packages or
|
|
|
|
# other conditions that should be resolved if possible.
|
|
|
|
# to disable these warnings, set the following value to False:
|
|
|
|
#system_warnings = True
|
|
|
|
|
|
|
|
# by default (as of 1.4), Ansible may display deprecation warnings for language
|
|
|
|
# features that should no longer be used and will be removed in future versions.
|
|
|
|
# to disable these warnings, set the following value to False:
|
|
|
|
#deprecation_warnings = True
|
|
|
|
|
2014-08-22 22:12:32 +02:00
|
|
|
# (as of 1.8), Ansible can optionally warn when usage of the shell and
|
2014-08-22 21:25:57 +02:00
|
|
|
# command module appear to be simplified by using a default Ansible module
|
|
|
|
# instead. These warnings can be silenced by adjusting the following
|
2016-02-25 23:21:28 +01:00
|
|
|
# setting or adding warn=yes or warn=no to the end of the command line
|
2014-08-22 22:12:32 +02:00
|
|
|
# parameter string. This will for example suggest using the git module
|
|
|
|
# instead of shelling out to the git command.
|
|
|
|
# command_warnings = False
|
2014-08-22 21:25:57 +02:00
|
|
|
|
|
|
|
|
2014-03-08 11:49:55 +01:00
|
|
|
# set plugin path directories here, separate with colons
|
2015-09-15 17:38:42 +02:00
|
|
|
#action_plugins = /usr/share/ansible/plugins/action
|
2016-06-28 00:14:14 +02:00
|
|
|
#cache_plugins = /usr/share/ansible/plugins/cache
|
2015-09-15 17:38:42 +02:00
|
|
|
#callback_plugins = /usr/share/ansible/plugins/callback
|
|
|
|
#connection_plugins = /usr/share/ansible/plugins/connection
|
|
|
|
#lookup_plugins = /usr/share/ansible/plugins/lookup
|
2016-06-28 00:14:14 +02:00
|
|
|
#inventory_plugins = /usr/share/ansible/plugins/inventory
|
2015-09-15 17:38:42 +02:00
|
|
|
#vars_plugins = /usr/share/ansible/plugins/vars
|
|
|
|
#filter_plugins = /usr/share/ansible/plugins/filter
|
|
|
|
#test_plugins = /usr/share/ansible/plugins/test
|
2016-03-05 12:15:04 +01:00
|
|
|
#strategy_plugins = /usr/share/ansible/plugins/strategy
|
2012-10-27 01:55:59 +02:00
|
|
|
|
2014-09-10 15:38:24 +02:00
|
|
|
# by default callbacks are not loaded for /bin/ansible, enable this if you
|
2016-02-25 23:21:28 +01:00
|
|
|
# want, for example, a notification or logging callback to also apply to
|
2014-09-10 15:38:24 +02:00
|
|
|
# /bin/ansible runs
|
|
|
|
#bin_ansible_callbacks = False
|
|
|
|
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# don't like cows? that's unfortunate.
|
2016-02-25 23:21:28 +01:00
|
|
|
# set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1
|
2013-06-20 22:19:47 +02:00
|
|
|
#nocows = 1
|
2013-04-23 16:40:11 +02:00
|
|
|
|
2015-10-15 16:32:55 +02:00
|
|
|
# set which cowsay stencil you'd like to use by default. When set to 'random',
|
|
|
|
# a random stencil will be selected for each task. The selection will be filtered
|
|
|
|
# against the `cow_whitelist` option below.
|
|
|
|
#cow_selection = default
|
|
|
|
#cow_selection = random
|
|
|
|
|
|
|
|
# when using the 'random' option for cowsay, stencils will be restricted to this list.
|
|
|
|
# it should be formatted as a comma-separated list with no spaces between names.
|
|
|
|
# NOTE: line continuations here are for formatting purposes only, as the INI parser
|
|
|
|
# in python does not support them.
|
|
|
|
#cow_whitelist=bud-frogs,bunny,cheese,daemon,default,dragon,elephant-in-snake,elephant,eyes,\
|
|
|
|
# hellokitty,kitty,luke-koala,meow,milk,moofasa,moose,ren,sheep,small,stegosaurus,\
|
|
|
|
# stimpy,supermilker,three-eyes,turkey,turtle,tux,udder,vader-koala,vader,www
|
|
|
|
|
2013-08-08 18:07:33 +02:00
|
|
|
# don't like colors either?
|
|
|
|
# set to 1 if you don't want colors, or export ANSIBLE_NOCOLOR=1
|
|
|
|
#nocolor = 1
|
|
|
|
|
2014-12-04 23:23:35 +01:00
|
|
|
# if set to a persistent type (not 'memory', for example 'redis') fact values
|
2014-08-11 17:37:30 +02:00
|
|
|
# from previous runs in Ansible will be stored. This may be useful when
|
|
|
|
# wanting to use, for example, IP information from one group of servers
|
|
|
|
# without having to talk to them in the same playbook run to get their
|
|
|
|
# current IP information.
|
2015-10-31 23:57:27 +01:00
|
|
|
#fact_caching = memory
|
2014-08-11 17:37:30 +02:00
|
|
|
|
2015-01-30 21:18:58 +01:00
|
|
|
|
|
|
|
# retry files
|
2015-09-17 13:05:46 +02:00
|
|
|
# When a playbook fails by default a .retry file will be created in ~/
|
|
|
|
# You can disable this feature by setting retry_files_enabled to False
|
|
|
|
# and you can change the location of the files by setting retry_files_save_path
|
|
|
|
|
2015-01-30 21:18:58 +01:00
|
|
|
#retry_files_enabled = False
|
|
|
|
#retry_files_save_path = ~/.ansible-retry
|
|
|
|
|
2016-03-23 10:38:12 +01:00
|
|
|
# squash actions
|
|
|
|
# Ansible can optimise actions that call modules with list parameters
|
|
|
|
# when looping. Instead of calling the module once per with_ item, the
|
|
|
|
# module is called once with all items at once. Currently this only works
|
|
|
|
# under limited circumstances, and only with parameters named 'name'.
|
2016-10-01 00:07:09 +02:00
|
|
|
#squash_actions = apk,apt,dnf,homebrew,package,pacman,pkgng,yum,zypper
|
2015-09-26 05:57:03 +02:00
|
|
|
|
|
|
|
# prevents logging of task data, off by default
|
|
|
|
#no_log = False
|
|
|
|
|
|
|
|
# prevents logging of tasks, but only on the targets, data is still logged on the master/controller
|
2015-12-05 19:43:02 +01:00
|
|
|
#no_target_syslog = False
|
2015-09-26 05:57:03 +02:00
|
|
|
|
2016-03-21 22:17:53 +01:00
|
|
|
# controls whether Ansible will raise an error or warning if a task has no
|
|
|
|
# choice but to create world readable temporary files to execute a module on
|
|
|
|
# the remote machine. This option is False by default for security. Users may
|
|
|
|
# turn this on to have behaviour more like Ansible prior to 2.1.x. See
|
|
|
|
# https://docs.ansible.com/ansible/become.html#becoming-an-unprivileged-user
|
|
|
|
# for more secure ways to fix this than enabling this option.
|
|
|
|
#allow_world_readable_tmpfiles = False
|
|
|
|
|
2015-11-05 22:21:34 +01:00
|
|
|
# controls the compression level of variables sent to
|
|
|
|
# worker processes. At the default of 0, no compression
|
|
|
|
# is used. This value must be an integer from 0 to 9.
|
|
|
|
#var_compression_level = 9
|
|
|
|
|
2016-04-05 20:06:17 +02:00
|
|
|
# controls what compression method is used for new-style ansible modules when
|
|
|
|
# they are sent to the remote system. The compression types depend on having
|
|
|
|
# support compiled into both the controller's python and the client's python.
|
|
|
|
# The names should match with the python Zipfile compression types:
|
|
|
|
# * ZIP_STORED (no compression. available everywhere)
|
|
|
|
# * ZIP_DEFLATED (uses zlib, the default)
|
|
|
|
# These values may be set per host via the ansible_module_compression inventory
|
|
|
|
# variable
|
|
|
|
#module_compression = 'ZIP_DEFLATED'
|
|
|
|
|
2016-02-10 17:23:49 +01:00
|
|
|
# This controls the cutoff point (in bytes) on --diff for files
|
|
|
|
# set to 0 for unlimited (RAM may suffer!).
|
|
|
|
#max_diff_size = 1048576
|
|
|
|
|
2016-09-29 23:14:02 +02:00
|
|
|
# This controls how ansible handles multiple --tags and --skip-tags arguments
|
|
|
|
# on the CLI. If this is True then multiple arguments are merged together. If
|
|
|
|
# it is False, then the last specified argument is used and the others are ignored.
|
|
|
|
#merge_multiple_cli_flags = False
|
|
|
|
|
2014-11-24 22:36:31 +01:00
|
|
|
[privilege_escalation]
|
|
|
|
#become=True
|
2015-07-06 21:42:23 +02:00
|
|
|
#become_method=sudo
|
|
|
|
#become_user=root
|
2014-11-24 22:36:31 +01:00
|
|
|
#become_ask_pass=False
|
|
|
|
|
2012-08-15 02:13:02 +02:00
|
|
|
[paramiko_connection]
|
|
|
|
|
2013-07-06 03:42:41 +02:00
|
|
|
# uncomment this line to cause the paramiko connection plugin to not record new host
|
2013-07-06 04:05:05 +02:00
|
|
|
# keys encountered. Increases performance on new host additions. Setting works independently of the
|
2013-07-06 03:42:41 +02:00
|
|
|
# host key checking setting above.
|
|
|
|
#record_host_keys=False
|
2012-08-15 02:13:02 +02:00
|
|
|
|
2013-10-07 14:39:23 +02:00
|
|
|
# by default, Ansible requests a pseudo-terminal for commands executed under sudo. Uncomment this
|
|
|
|
# line to disable this behaviour.
|
2013-09-25 14:15:49 +02:00
|
|
|
#pty=False
|
|
|
|
|
2012-08-15 02:13:02 +02:00
|
|
|
[ssh_connection]
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# ssh arguments to use
|
2016-02-25 23:21:28 +01:00
|
|
|
# Leaving off ControlPersist will result in poor performance, so use
|
2016-06-10 19:17:49 +02:00
|
|
|
# paramiko on older platforms rather than removing it, -C controls compression use
|
|
|
|
#ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s
|
2012-08-15 02:13:02 +02:00
|
|
|
|
2016-11-03 23:19:59 +01:00
|
|
|
# The base directory for the ControlPath sockets.
|
|
|
|
# This is the "%(directory)s" in the control_path option
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# control_path_dir = /tmp/.ansible/cp
|
|
|
|
#control_path_dir = $HOME/.ansible/cp
|
|
|
|
|
2013-09-19 04:10:32 +02:00
|
|
|
# The path to use for the ControlPath sockets. This defaults to
|
|
|
|
# "%(directory)s/ansible-ssh-%%h-%%p-%%r", however on some systems with
|
2016-02-25 23:21:28 +01:00
|
|
|
# very long hostnames or very long path names (caused by long user names or
|
2013-09-19 04:10:32 +02:00
|
|
|
# deeply nested home directories) this can exceed the character limit on
|
2016-02-25 23:21:28 +01:00
|
|
|
# file socket names (108 characters for most platforms). In that case, you
|
2013-09-19 04:10:32 +02:00
|
|
|
# may wish to shorten the string below.
|
2016-02-25 23:21:28 +01:00
|
|
|
#
|
|
|
|
# Example:
|
2013-09-19 04:10:32 +02:00
|
|
|
# control_path = %(directory)s/%%h-%%r
|
|
|
|
#control_path = %(directory)s/ansible-ssh-%%h-%%p-%%r
|
|
|
|
|
2016-02-25 23:21:28 +01:00
|
|
|
# Enabling pipelining reduces the number of SSH operations required to
|
|
|
|
# execute a module on the remote server. This can result in a significant
|
|
|
|
# performance improvement when enabled, however when using "sudo:" you must
|
2015-12-03 16:59:23 +01:00
|
|
|
# first disable 'requiretty' in /etc/sudoers
|
2014-01-16 19:40:28 +01:00
|
|
|
#
|
2015-12-03 16:59:23 +01:00
|
|
|
# By default, this option is disabled to preserve compatibility with
|
|
|
|
# sudoers configurations that have requiretty (the default on many distros).
|
2016-02-25 23:21:28 +01:00
|
|
|
#
|
2015-12-03 16:59:23 +01:00
|
|
|
#pipelining = False
|
2014-01-16 19:40:28 +01:00
|
|
|
|
2016-09-29 23:44:54 +02:00
|
|
|
# Control the mechanism for transfering files
|
|
|
|
# * smart = try sftp and then try scp [default]
|
|
|
|
# * True = use scp only
|
|
|
|
# * False = use sftp only
|
|
|
|
#scp_if_ssh = smart
|
2012-11-08 20:32:56 +01:00
|
|
|
|
2015-07-22 20:25:47 +02:00
|
|
|
# if False, sftp will not use batch mode to transfer files. This may cause some
|
|
|
|
# types of file transfer failures impossible to catch however, and should
|
|
|
|
# only be disabled if your sftp version has problems with batch mode
|
|
|
|
#sftp_batch_mode = False
|
|
|
|
|
2013-08-27 22:25:54 +02:00
|
|
|
[accelerate]
|
2015-10-31 23:57:27 +01:00
|
|
|
#accelerate_port = 5099
|
|
|
|
#accelerate_timeout = 30
|
|
|
|
#accelerate_connect_timeout = 5.0
|
2014-03-26 01:29:55 +01:00
|
|
|
|
|
|
|
# The daemon timeout is measured in minutes. This time is measured
|
|
|
|
# from the last activity to the accelerate daemon.
|
2016-02-25 23:21:28 +01:00
|
|
|
#accelerate_daemon_timeout = 30
|
2014-03-26 01:29:55 +01:00
|
|
|
|
|
|
|
# If set to yes, accelerate_multi_key will allow multiple
|
|
|
|
# private keys to be uploaded to it, though each user must
|
|
|
|
# have access to the system via SSH to add a new key. The default
|
|
|
|
# is "no".
|
|
|
|
#accelerate_multi_key = yes
|
|
|
|
|
2015-05-14 16:50:22 +02:00
|
|
|
[selinux]
|
|
|
|
# file systems that require special treatment when dealing with security context
|
|
|
|
# the default behaviour that copies the existing context or uses the user default
|
2015-07-10 18:42:59 +02:00
|
|
|
# needs to be changed to use the file system dependent context.
|
2015-07-02 23:24:13 +02:00
|
|
|
#special_context_filesystems=nfs,vboxsf,fuse,ramfs
|
2015-12-29 21:41:00 +01:00
|
|
|
|
2016-03-11 00:34:31 +01:00
|
|
|
# Set this to yes to allow libvirt_lxc connections to work without SELinux.
|
|
|
|
#libvirt_lxc_noseclabel = yes
|
|
|
|
|
2015-12-29 21:41:00 +01:00
|
|
|
[colors]
|
2016-05-18 18:21:30 +02:00
|
|
|
#highlight = white
|
2015-12-29 21:41:00 +01:00
|
|
|
#verbose = blue
|
|
|
|
#warn = bright purple
|
|
|
|
#error = red
|
|
|
|
#debug = dark gray
|
|
|
|
#deprecate = purple
|
|
|
|
#skip = cyan
|
|
|
|
#unreachable = red
|
|
|
|
#ok = green
|
|
|
|
#changed = yellow
|
2016-02-18 11:01:37 +01:00
|
|
|
#diff_add = green
|
|
|
|
#diff_remove = red
|
|
|
|
#diff_lines = cyan
|