This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# | |
# Install Jenkins On CentOS 6,7 and 8 by using jenkins.war file. | |
# Note: here, we are using OpenJDK | |
# Git Repo: https://github.com/sharadchhetri/scripts/blob/master/Installation/jenkins_centos/install-jenkins-centos.sh | |
# Blog: https://sharadchhetri.com | |
# | |
sudo yum install -y wget | |
yum install -y java-1.8.0-openjdk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################# | |
# Description: Setup your vim for puppet work # | |
# Author: Sharad Chhetri # | |
# Blog: sharadchhetri.com # | |
# Version : 1.0 # | |
# Date: 4-July-2016 # | |
################################################# | |
#1: Create new hidden dir called .vim at user's home dir | |
mkdir ~/.vim |