Last active
November 4, 2019 11:55
-
-
Save bitroniq/7da775025b29e8b1fea4a4f79ef89287 to your computer and use it in GitHub Desktop.
OpenStack post installation script for cloud init aka userdata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
ssh_pwauth: True | |
password: techloq12 | |
users: | |
- default | |
- name: root | |
- name: bitroniq | |
chpasswd: | |
list: | | |
root:techloq12 | |
bitroniq:techloq12 | |
expire: False | |
# Ref: | |
# https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux_atomic_host/7/html/installation_and_configuration_guide/setting_up_cloud_init | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment