Compare commits

...

2 Commits

Author SHA1 Message Date
nemunaire 2f93186906 Include domain in inventory 2023-03-14 14:10:43 +01:00
nemunaire 0f9b5178b3 Can parametrized watchdog 2023-03-14 14:10:26 +01:00
5 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,6 @@
---
ssh_authorized_keys: []
ssh_authorized_keys_extra: []
watchdog_reboot_timer: 16
watchdog_reset_timer: 10

View File

@ -20,10 +20,9 @@
line: "{{ item.ip }} {{ item.hosts }}"
with_items:
- ip: "127.0.0.1"
hosts: "{{ inventory_hostname }}.{{ mydomain }} {{ inventory_hostname }} localhost localhost.localdomain"
hosts: "{{ inventory_hostname }} {{ inventory_hostname.split('.')[0] }} localhost localhost.localdomain"
- ip: "::1"
hosts: "{{ inventory_hostname }}.{{ mydomain }} {{ inventory_hostname }} localhost localhost.localdomain"
when: mydomain is defined
hosts: "{{ inventory_hostname }} {{ inventory_hostname.split('.')[0] }} localhost localhost.localdomain"
- import_tasks: "pkg_Alpine.yml"
when: ansible_distribution == 'Alpine'

View File

@ -1 +1 @@
{{ inventory_hostname }}
{{ inventory_hostname.split(".")[0] }}

View File

@ -29,7 +29,7 @@
#repair-maximum = 1
watchdog-device = /dev/watchdog
watchdog-timeout = 16
watchdog-timeout = {{ watchdog_reboot_timer }}
# Defaults compiled into the binary
#temperature-sensor =

View File

@ -1,2 +1,2 @@
WATCHDOG_OPTS="-T 16 -t 10"
WATCHDOG_OPTS="-T {{ watchdog_reboot_timer }} -t {{ watchdog_reset_timer }}"
WATCHDOG_DEV="/dev/watchdog"