Skip to content

Instantly share code, notes, and snippets.

View ashusaini's full-sized avatar

ashu saini ashusaini

  • NewPage Solutions
  • noida,India
View GitHub Profile
@ashusaini
ashusaini / keybase.md
Last active February 9, 2021 17:16
keybase.md

Keybase proof

I hereby claim:

  • I am ashusaini on github.
  • I am ashusaini (https://keybase.io/ashusaini) on keybase.
  • I have a public key ASChJwbPaiWfzDf2-pELXNNxL01VqGX1x6SfmadeBliT8Qo

To claim this, I am signing this object:

@ashusaini
ashusaini / composing-software.md
Created January 31, 2019 18:24 — forked from rosario/composing-software.md
Eric Elliott's Composing Software Series
@ashusaini
ashusaini / install_python.yml
Created August 23, 2018 04:29
This file is very helpful when you want to connect ansible to your server, i will enable ansible to perform other actions to server
- hosts: all
gather_facts: False
become: true
pre_tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
changed_when: False
- setup: # aka gather_facts
@ashusaini
ashusaini / install_python.yml
Created August 23, 2018 04:29
This file is very helpful when you want to connect ansible to your server, i will enable ansible to perform other actions to server
- hosts: all
gather_facts: False
become: true
pre_tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
changed_when: False
- setup: # aka gather_facts