Skip to content

Instantly share code, notes, and snippets.

@chourobin
Created May 8, 2014 19:43

Revisions

  1. chourobin created this gist May 8, 2014.
    21 changes: 21 additions & 0 deletions ansible.md
    Original 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
    ```
    -