Created
December 12, 2017 13:55
-
-
Save gowatana/1584704e51c6c5710a721fe22ad783ef to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| disable_root: false | |
| ssh_pwauth: true | |
| package_upgrade: false | |
| users: | |
| - name: ntnx | |
| homedir: /home/ntnx | |
| shell: /bin/bash | |
| passwd: $6$JdTzBZQk$BV8RPXPpkcFKXFiMmk3rQ61GorukIWswvX2TFM5F0W0XX4foCTCKyA6OxRL85LPZNPOdNE3B//TKYqgQPCl3N/ | |
| lock_passwd: false | |
| write_files: | |
| - path: /home/ntnx/.bash_profile | |
| owner: ntnx | |
| content: | | |
| export PATH=/usr/bin:$PATH | |
| alias 2048="2048 -c" | |
| 2048 | |
| exit | |
| yum_repos: | |
| ol7_developer_EPEL: | |
| name: "Oracle Linux $releasever Development Packages ($basearch)" | |
| baseurl: "http://yum.oracle.com/repo/OracleLinux/OL7/developer_EPEL/$basearch/" | |
| enabled: true | |
| gpgcheck: true | |
| gpgkey: "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle" | |
| packages: | |
| - 2048-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment