Compare commits
No commits in common. "ec00bf3d76eb13590bef3546ac67ee1ddb2f1177" and "cc4a5748fac5c8d5dbc8ffeacc07445b72f38ad7" have entirely different histories.
ec00bf3d76
...
cc4a5748fa
@ -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" ]
|
chains: [ "INPUT", "OUTPUT", "FORWARD", "LOG_DROP", "LOG_ACCEPT", "ICMP_FLOOD", "LIMIT_SSH" ]
|
||||||
- table: filter
|
- table: filter
|
||||||
name_override: ip6tables
|
name_override: ip6tables
|
||||||
chains: [ "INPUT", "OUTPUT", "FORWARD", "LOG_DROP", "LOG_ACCEPT", "ICMP_FLOOD" ]
|
chains: [ "INPUT", "OUTPUT", "FORWARD", "LOG_DROP", "LOG_ACCEPT", "ICMP_FLOOD", "LIMIT_SSH" ]
|
||||||
kernel_vmstat: []
|
kernel_vmstat: []
|
||||||
net: []
|
net: []
|
||||||
netstat: []
|
netstat: []
|
||||||
|
@ -62,4 +62,3 @@
|
|||||||
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"
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# {{ ansible_managed }}
|
# {{ ansible_managed }}
|
||||||
|
|
||||||
{% if unattended_upgrades_apticron_email %}
|
{% if unattended_upgrades_apticron_email is defined %}
|
||||||
EMAIL="{{ unattended_upgrades_apticron_email | default('root') }}"
|
EMAIL="{{ unattended_upgrades_apticron_email | default('root') }}"
|
||||||
SYSTEM="{{ ansible_hostname }}"
|
SYSTEM="{{ ansible_hostname }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -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 %}
|
{% if unattended_upgrades_mail is defined %}
|
||||||
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 %}
|
||||||
|
@ -7,7 +7,6 @@ util_package_state: latest
|
|||||||
util_packages:
|
util_packages:
|
||||||
editors:
|
editors:
|
||||||
- vim
|
- vim
|
||||||
- neovim
|
|
||||||
devel:
|
devel:
|
||||||
- git
|
- git
|
||||||
- mercurial
|
- mercurial
|
||||||
@ -30,7 +29,6 @@ util_packages:
|
|||||||
- iperf
|
- iperf
|
||||||
- iperf3
|
- iperf3
|
||||||
- smem
|
- smem
|
||||||
- hping3
|
|
||||||
math:
|
math:
|
||||||
- bc
|
- bc
|
||||||
misc:
|
misc:
|
||||||
@ -43,7 +41,6 @@ util_packages:
|
|||||||
- p7zip-full
|
- p7zip-full
|
||||||
- pigz
|
- pigz
|
||||||
- pxz
|
- pxz
|
||||||
- zstd
|
|
||||||
- pbzip2
|
- pbzip2
|
||||||
- pv
|
- pv
|
||||||
- htop
|
- htop
|
||||||
@ -63,7 +60,6 @@ util_packages:
|
|||||||
- jq
|
- jq
|
||||||
- crudini
|
- crudini
|
||||||
- xmlstarlet
|
- xmlstarlet
|
||||||
- ack
|
|
||||||
interpreters:
|
interpreters:
|
||||||
- lua5.3
|
- lua5.3
|
||||||
python:
|
python:
|
||||||
@ -74,7 +70,3 @@ util_packages:
|
|||||||
fun:
|
fun:
|
||||||
- cmatrix
|
- cmatrix
|
||||||
- cowsay
|
- cowsay
|
||||||
www:
|
|
||||||
- elinks
|
|
||||||
- links
|
|
||||||
- lynx
|
|
||||||
|
@ -8,8 +8,3 @@
|
|||||||
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
|
|
||||||
|
Loading…
Reference in New Issue
Block a user