Skip to content

Instantly share code, notes, and snippets.

@jlund
jlund / main.yml
Last active December 18, 2015 11:29 — forked from ScottSturdivant/main.yml
- name: Set the hostname in rc.conf
lineinfile: dest=/etc/rc.conf regexp="^hostname" line='hostname="{{ hostname }}"'
register: hostnamestatus
- name: Set the hostname
command: hostname {{ hostname }}
when: hostnamestatus.changed