Skip to content

Instantly share code, notes, and snippets.

@noam1023
Created November 11, 2017 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noam1023/d69e830718ce9cc84fa1e5740d28206f to your computer and use it in GitHub Desktop.
Save noam1023/d69e830718ce9cc84fa1e5740d28206f to your computer and use it in GitHub Desktop.
bootstrap the ansibl3
# after installing ansible:
sudo ansible-galaxy install theNewFlesh.sublime
sudo ansible-galaxy install henriklynggaard.clion
ansible-galaxy install theNewFlesh.sublime
@noam1023
Copy link
Author

noam1023 commented Nov 11, 2017

- hosts: localhost
  sudo: yes
  roles:
     - { role: theNewFlesh.sublime }
     - { role: henriklynggaard.clion }
     - { role: gantsign.gitkraken }
     


- name: "install using apt"
  hosts: localhost---
  tasks:
   - apt: name={{ item }} state=present
     with_items:
       - curl
       - gcc
       - python-apport
       - python-lockfile
       - python-requests
       - ubuntu-restricted-extras
       - cgdb
       - iftop
       - htop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment