Created
December 10, 2015 22:54
-
-
Save ColCh/a70754d71cd607b31938 to your computer and use it in GitHub Desktop.
Install puppet, java and android-sdk
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
#!/bin/bash | |
# Installs puppet, java and android-sdk | |
curl -sS https://raw.githubusercontent.com/hashicorp/puppet-bootstrap/master/ubuntu.sh | sh | |
puppet module install 7terminals-java | |
puppet module install maestrodev-android | |
manifest_path="/tmp/manifest-sdk.pp" | |
echo <<EOF > $manifest_path | |
class { 'java': } -> | |
class { 'android': } | |
EOF | |
puppet apply $manifest_path | |
rm $manifest_path |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment