Initial commit
This commit is contained in:
commit
bd5282ad87
3 changed files with 31 additions and 0 deletions
20
tasks/main.yml
Normal file
20
tasks/main.yml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
- name: install dbus (needed to set the hostname with systemd)
|
||||
apt:
|
||||
pkg: dbus
|
||||
when: rootpath == ""
|
||||
|
||||
- name: set hostname with systemd
|
||||
hostname:
|
||||
name: "{{ inventory_hostname }}"
|
||||
when: rootpath == ""
|
||||
|
||||
- name: customize vm image hostname
|
||||
copy:
|
||||
dest: "{{ rootpath }}/etc/hostname"
|
||||
content: '{{ inventory_hostname_short }}'
|
||||
|
||||
- name: customize vm image hosts file
|
||||
template:
|
||||
src: hosts.j2
|
||||
dest: "{{ rootpath }}/etc/hosts"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue