Last active
May 6, 2016 18:24
-
-
Save joshcooper/e353cb9b9066896014f43f8317a604e1 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
# native build using pooler | |
$ bundle exec build_host_info el-7-x86_64 | |
{ | |
"name": "centos-7-x86_64", | |
"engine": "pooler" | |
} | |
# cross-compile using pooler | |
$ bundle exec build_host_info eos-4-i386 | |
{ | |
"name": "fedora-14-i386", | |
"engine": "pooler" | |
} | |
# native build with locking | |
$ bundle exec build_host_info aix-5.3-ppc | |
{ | |
"name": "pe-aix-53-builder.delivery.puppetlabs.net", | |
"engine": "hardware" | |
} | |
# build with custom engine | |
$ bundle exec build_host_info puppet-agent el-7-x86_64 --engine docker | |
{ | |
"name": "centos7", | |
"engine": "docker" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment