Compare commits

..

8 Commits

6 changed files with 18 additions and 4 deletions

View File

@ -45,10 +45,10 @@ telegraf_config_inputs:
ipset: [] ipset: []
iptables: iptables:
- table: filter - table: filter
chains: [ "INPUT", "OUTPUT", "FORWARD", "LOG_DROP", "LOG_ACCEPT", "ICMP_FLOOD", "LIMIT_SSH" ] chains: [ "INPUT", "OUTPUT", "FORWARD", "LOG_DROP", "LOG_ACCEPT", "ICMP_FLOOD" ]
- table: filter - table: filter
name_override: ip6tables name_override: ip6tables
chains: [ "INPUT", "OUTPUT", "FORWARD", "LOG_DROP", "LOG_ACCEPT", "ICMP_FLOOD", "LIMIT_SSH" ] chains: [ "INPUT", "OUTPUT", "FORWARD", "LOG_DROP", "LOG_ACCEPT", "ICMP_FLOOD" ]
kernel_vmstat: [] kernel_vmstat: []
net: [] net: []
netstat: [] netstat: []

View File

@ -62,3 +62,4 @@
name: "{{ telegraf_service_name }}" name: "{{ telegraf_service_name }}"
state: "{{ telegraf_service_state }}" state: "{{ telegraf_service_state }}"
enabled: "{{ telegraf_service_enabled }}" enabled: "{{ telegraf_service_enabled }}"
when: telegraf_package_state != "absent"

View File

@ -1,6 +1,6 @@
# {{ ansible_managed }} # {{ ansible_managed }}
{% if unattended_upgrades_apticron_email is defined %} {% if unattended_upgrades_apticron_email %}
EMAIL="{{ unattended_upgrades_apticron_email | default('root') }}" EMAIL="{{ unattended_upgrades_apticron_email | default('root') }}"
SYSTEM="{{ ansible_hostname }}" SYSTEM="{{ ansible_hostname }}"
{% endif %} {% endif %}

View File

@ -26,7 +26,7 @@ Unattended-Upgrade::MinimalSteps "{{ unattended_upgrades_minimal_steps | lower }
{% if unattended_upgrades_install_on_shutdown is defined %} {% if unattended_upgrades_install_on_shutdown is defined %}
Unattended-Upgrade::InstallOnShutdown "{{ unattended_upgrades_install_on_shutdown | lower }}"; Unattended-Upgrade::InstallOnShutdown "{{ unattended_upgrades_install_on_shutdown | lower }}";
{% endif %} {% endif %}
{% if unattended_upgrades_mail is defined %} {% if unattended_upgrades_mail %}
Unattended-Upgrade::Mail "{{ unattended_upgrades_mail }}"; Unattended-Upgrade::Mail "{{ unattended_upgrades_mail }}";
{% endif %} {% endif %}
{% if unattended_upgrades_mail_only_on_error is defined %} {% if unattended_upgrades_mail_only_on_error is defined %}

View File

@ -7,6 +7,7 @@ util_package_state: latest
util_packages: util_packages:
editors: editors:
- vim - vim
- neovim
devel: devel:
- git - git
- mercurial - mercurial
@ -29,6 +30,7 @@ util_packages:
- iperf - iperf
- iperf3 - iperf3
- smem - smem
- hping3
math: math:
- bc - bc
misc: misc:
@ -41,6 +43,7 @@ util_packages:
- p7zip-full - p7zip-full
- pigz - pigz
- pxz - pxz
- zstd
- pbzip2 - pbzip2
- pv - pv
- htop - htop
@ -60,6 +63,7 @@ util_packages:
- jq - jq
- crudini - crudini
- xmlstarlet - xmlstarlet
- ack
interpreters: interpreters:
- lua5.3 - lua5.3
python: python:
@ -70,3 +74,7 @@ util_packages:
fun: fun:
- cmatrix - cmatrix
- cowsay - cowsay
www:
- elinks
- links
- lynx

View File

@ -8,3 +8,8 @@
apt_repository: apt_repository:
repo: ppa:git-core/ppa repo: ppa:git-core/ppa
state: "{{ util_git_ppa_state }}" state: "{{ util_git_ppa_state }}"
- name: add neovim ppa
apt_repository:
repo: ppa:neovim-ppa/stable
state: present