77 lines
2.3 KiB
YAML
77 lines
2.3 KiB
YAML
---
|
|
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
|
|
#
|
|
# ipr-cnrs.arpwatch default variables [[[
|
|
# ======================================
|
|
|
|
# Packages and installation [[[
|
|
# -----------------------------
|
|
|
|
# .. envvar:: arpwatch__base_packages [[[
|
|
#
|
|
# List of base packages to install.
|
|
arpwatch__base_packages:
|
|
- 'arpwatch'
|
|
|
|
# ]]]
|
|
# .. envvar:: arpwatch__enabled [[[
|
|
#
|
|
# Enable or disable support for Arpwatch on a given host. Disabling this
|
|
# option does not remove existing installation and configuration.
|
|
#
|
|
arpwatch__enabled: True
|
|
|
|
# ]]]
|
|
# .. envvar:: arpwatch__service_name [[[
|
|
#
|
|
# The service name to manage.
|
|
arpwatch__service_name: 'arpwatch'
|
|
|
|
# ]]]
|
|
# .. envvar:: arpwatch__service_manage [[[
|
|
#
|
|
# If the arpwatch service should be managed? Possible options:
|
|
#
|
|
# ``True``
|
|
# Default. The service is started and enabled.
|
|
#
|
|
# ``False``
|
|
# The service is stopped and disabled from startup.
|
|
arpwatch__service_manage: True
|
|
|
|
# ]]]
|
|
|
|
# ]]]
|
|
|
|
# Configuration [[[
|
|
# -----------------------------
|
|
|
|
# .. envvar:: arpwatch__conf_interfaces [[[.
|
|
# List of network interfaces that should have a running arpwatch process.
|
|
#
|
|
# By default, only listen on the main network interface.
|
|
arpwatch__conf_interfaces: [ '{{ ansible_default_ipv4.interface }}' ]
|
|
|
|
# ]]]
|
|
# .. envvar:: arpwatch__conf_username [[[.
|
|
# Username that should run Arpwatch.
|
|
#
|
|
# The value should be a string with an existing username.
|
|
# ``arpwatch``
|
|
# Default. Created during installation.
|
|
arpwatch__conf_username: 'arpwatch'
|
|
|
|
# ]]]
|
|
# .. envvar:: arpwatch__conf_args [[[.
|
|
# Arguments to apply to Arpwatch.
|
|
#
|
|
# The value should be a string with all arguments separated by a whitespace.
|
|
# See the manual for more informations.
|
|
# ``-N -p``
|
|
# Default.
|
|
arpwatch__conf_args: '-N -p'
|
|
|
|
# ]]]
|
|
|
|
# ]]]
|