This repository has been archived on 2025-04-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
common-ansible/tasks/host.yml
2020-11-07 14:42:58 +01:00

15 lines
256 B
YAML

- name: copy hostname
template:
src: "hostname.j2"
dest: "/etc/hostname"
owner: root
group: root
mode: "0644"
- name: copy hosts
template:
src: "hosts.j2"
dest: "/etc/hosts"
owner: root
group: root
mode: "0644"