25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.
|
12345678910111213141516171819 |
- ---
-
- - name: hostname
- hostname:
- name: "{{inventory_hostname}}"
- when: not root_target_directory is defined
-
-
- - name: localhost ipv4 entry
- lineinfile:
- dest: "{{ root_target_directory | default('') }}/etc/hosts"
- regexp: '^127\.0\.0\.1'
- line: "127.0.0.1 localhost {{inventory_hostname}}{% if inventory_hostname != inventory_hostname_short %} {{inventory_hostname_short}}{% endif %}"
-
- - name: localhost ipv6 entry
- lineinfile:
- dest: "{{ root_target_directory | default('') }}/etc/hosts"
- regexp: '^::1'
- line: "::1 localhost ip6-localhost ip6-loopback {{inventory_hostname}}{% if inventory_hostname != inventory_hostname_short %} {{inventory_hostname_short}}{% endif %}"
|