1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00

Merge pull request #679 from holta/0-init

FQDN fix in 0-init/tasks/hostname.yml
This commit is contained in:
A Holt 2018-02-13 08:59:18 -05:00 committed by GitHub
commit 3af9836c9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,8 +14,8 @@
- name: Configure short hostname in /etc/hosts
lineinfile:
dest: /etc/hosts
regexp: "^127\.0\.0\.1"
line: "127.0.0.1 localhost.localdomain localhost box {{ iiab_hostname }}"
regexp: '^127\.0\.0\.1'
line: '127.0.0.1 localhost.localdomain localhost box {{ iiab_hostname }}'
owner: root
group: root
mode: 0644