Sha256: 57ca24928810946ba0125661619e0907b19187bd2503f586a0ff9a71a3a2a198

Contents?: true

Size: 856 Bytes

Versions: 12

Compression:

Stored size: 856 Bytes

Contents

#!/bin/bash - 
# Initial provisioning shell script
# For CentOS and Oracle Linux 7

echo $(grep PRETTY_NAME /etc/os-release | cut -d'"' -f2)

# EPEL for Enterprise Linux 7 already set in base.sh
# rpm -ivh http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-1.noarch.rpm

# Start provisioning
yum install -y bash bash-completion zsh tmux \
    wget curl gawk ack \
    htop dstat iotop iftop sysstat psmisc \
    git tig rsync sshfs sshpass \
    vim colordiff \
    pv tree expect \
    ethtool iptraf nmap iperf3 \
    iptables conntrack iptstate \
    net-tools bind-utils \
    lshw pciutils usbutils \
    strace gdb \
    reptyr ntsysv \
    yum-utils

ret=$?

if [[ $ret -ne 0 ]]; then
    echo "Unfortunately something went wrong..." >&2
    exit 1
else
    echo "Shell script provisioning done!"
    sudo yum clean all
fi

exit 0

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.5.0.alpha3 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.5.0.alpha2 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.5.0.alpha1 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.5.1 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.5 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.5.pre1 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.4 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.3 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.2 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.1 templates/OracleLinux-7.0-x86_64-DVD/provision.sh
veewee-0.4.0 templates/OracleLinux-7.0-x86_64-DVD/provision.sh