Skip to main content

Posts

Showing posts with the label Ansible

Install AWS CLI on Ubuntu localhost using Ansible Playbook

Install AWS CLI on Ubuntu localhost using Ansible Playbook --- - hosts: localhost tasks: - name: Installing Unzip package package: name: unzip state: present when: ansible_facts['os_family'] == "Debian" become: true - name: Create awscli directory in home directory file: path: ~/awscli state: directory mode: '0755' - name: Download bundled installer zip file get_url: url: https://s3.amazonaws.com/aws-cli/awscli-bundle.zip dest: ~/awscli/awscli-bundle.zip - name: Extract zip file unarchive: src: ~/awscli/awscli-bundle.zip dest: ~/awscli - name: Run install command shell: /home/ubuntu/awscli/awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws become: true Same script is also avail...

Install AWS CLI on Ubuntu localhost using Ansible Playbook

Install AWS CLI on Ubuntu localhost using Ansible Playbook --- - hosts: localhost tasks: - name: Installing Unzip package package: name: unzip state: present when: ansible_facts['os_family'] == "Debian" become: true - name: Create awscli directory in home directory file: path: ~/awscli state: directory mode: '0755' - name: Download bundled installer zip file get_url: url: https://s3.amazonaws.com/aws-cli/awscli-bundle.zip dest: ~/awscli/awscli-bundle.zip - name: Extract zip file unarchive: src: ~/awscli/awscli-bundle.zip dest: ~/awscli - name: Run install command shell: /home/ubuntu/awscli/awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws become: true Same script is also avail...

Install Ansible on Ubuntu using Shell Script

Shell Script to Install Ansible in Ubuntu #!/bin/bash echo "UPDATING ALL PACKAGES" sudo apt update -y for i in 1 2 3 4 5 do echo " " done echo "INSTALLING software-properties-common" sudo apt install software-properties-common -y for i in 1 2 3 4 5 do echo " " done echo "INSTALLING ppa:ansible/ansible REPOSITORY" sudo apt-add-repository --yes --update ppa:ansible/ansible -y for i in 1 2 3 4 5 do echo " " done echo "INSTALLING ANSIBLE" sudo apt install ansible -y Same script is also available at https://github.com/JaydeepUniverse/automation/blob/master/ansible.sh