Skip to content

Instantly share code, notes, and snippets.

View iamgini's full-sized avatar
⚙️
#learningeveryday

Gineesh Madapparambath iamgini

⚙️
#learningeveryday
View GitHub Profile
(parted) unit GB
(parted) mkpart primary 0 3599.5
(parted) print
Model: DELL PERC H730P Mini (scsi)
Disk /dev/sdc: 3599GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 0.00GB 3599GB 3599GB primary
[root@ansible-box ~]# ansible all -m ping -i mylist
box2 | SUCCESS => {
"changed": false,
"ping": "pong"
}
box1 | SUCCESS => {
"changed": false,
"ping": "pong"
}
[root@ansible-box ~]# ansible all -i mylist -m command -a "uptime"
box2 | SUCCESS | rc=0 >>
07:15:49 up 1:12, 2 users, load average: 0.00, 0.00, 0.00
box1 | SUCCESS | rc=0 >>
07:15:49 up 15 min, 2 users, load average: 0.00, 0.00, 0.00
[root@ansible-box ~]# ansible all -i mylist -m command -a "id"
box2 | SUCCESS | rc=0 >>
uid=0(root) gid=0(root) groups=0(root)

Download Vagrant boxes manually

In this example, we're going to download the Midnight Sun box.

# The box URL is https://app.vagrantup.com/uwmidsun/boxes/box/versions/2.1.0
# In general, we just take the box URL, and then append the provider URL
# https://app.vagrantup.com/<organization name>/boxes/<box name>/versions/<version>/providers/<provider>.box
wget https://app.vagrantup.com/uwmidsun/boxes/box/versions/2.1.0/providers/virtualbox.box -O box-2.1.0.box
@iamgini
iamgini / rhel7.ks
Created July 3, 2018 04:03 — forked from nekop/rhel7.ks
RHEL7 kickstart
install
url --url=http://example.com/your/path/to/rhel7/install/image/RHEL-7/7.0/Server/x86_64/os/
lang en_US.UTF-8
keyboard us
network --onboot yes --device eth0 --bootproto dhcp --ipv6 auto
rootpw foobar
firewall --service=ssh
authconfig --enableshadow --passalgo=sha512
selinux --enforcing
timezone --utc Asia/Tokyo
# Simple python script to generate numbers from 1 to 100
# But on multiples of three print "Loktar" instead of the number,
# and on multiples of five print "Ogar".
# and on multiples of both 3 and 5 your program should print "LoktarOgar".
# author : Gineesh ([email protected])
# run the code as python python-1to100-loop.py
x = 1
while x < 101:
# check if the value can be divided by both 5 and 3 (multiple of 5 and 3)
@iamgini
iamgini / openshift-cheatsheet.md
Created September 19, 2018 09:33 — forked from rafaeltuelho/openshift-cheatsheet.md
My Openshift Cheatsheet

My Openshift Cheatsheet

Logging Aggregation throubleshooting

Process a template, create a new binary build to customize something and them change the DeploymentConfig to use the new Image...

oc process openshift//datagrid72-basic | oc create -f -
@iamgini
iamgini / gist:c4a72ad86a439b0da30f7afaad6b527f
Created June 2, 2020 10:54
samdoran-pgsql-replication-role-ansible-tower-notes
[Sam Doran](https://github.com/samdoran) contributed this Ansible role for PostgreSQL Repliction, especially for Database Streaming Replication for Ansible Tower Cluster. Some of the issues are already fixed and good to go.
<!-- TOC orderedlist:false -->
- [existing_pg_dir - undefined variable](#existingpgdir---undefined-variable)
- [Typo in Variable value](#typo-in-variable-value)
- [Issue with Loop as only item entry for replica](#issue-with-loop-as-only-item-entry-for-replica)