#cloud-config disable_root: true hostname: {{ item[0] }} fqdn: {{ item[0] }}.example.com manage_etc_hosts: true users: - default - name: root ssh_authorized_keys: - {{ lookup('file', '~/.ssh/id_rsa.pub') }} system_info: default_user: name: openshift sudo: ["ALL=(ALL) NOPASSWD: ALL"] ssh_authorized_keys: - {{ lookup('file', '~/.ssh/id_rsa.pub') }} runcmd: - NETWORK_CONFIG=/etc/sysconfig/network-scripts/ifcfg-eth0; if ! grep DHCP_HOSTNAME ${NETWORK_CONFIG}; then echo 'DHCP_HOSTNAME="{{ item[0] }}.example.com"' >> ${NETWORK_CONFIG}; fi; pkill -9 dhclient; service network restart