Created
May 8, 2014 19:43
Revisions
-
chourobin created this gist
May 8, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ # Setup AWX (do once) - Create EC2 instance and login - Install ansible w/ dependencies (git, python, etc)[http://www.ansibleworks.com/docs/gettingstarted.html] ``` sudo add-apt-repository ppa:rquillo/ansible apt-get install ansible pip install PyYAML Jinja2 paramiko ``` - Install AWX (pdf)[http://www.ansibleworks.com/releases/awx/docs/awx_user_guide.pdf] ``` wget "http://ansibleworks.com/releases/awx/setup/awx-setup-1.2.2.tar.gz" tar xvzf awx-setup-1.2.2.tar.gz cd awx-setup-1.2.2 // edit group_vars/all vim group_vars/all // and edit ./setup.sh ``` -