This file contains hidden or 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
########################## | |
snmp_community="public" | |
snmp_host="1.2.3.4" | |
########################### | |
rm -f /tmp/cn-wlc.txt | |
#################################################################### | |
#Set input system to break on new-line when adding data to an array# | |
#################################################################### | |
IFS=$'\n' | |
############################################################################################ |
This file contains hidden or 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 | |
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config | |
/usr/sbin/setenforce 0 | |
yum --enablerepo=extras install epel-release | |
yum-config-manager --enable remi-php71 | |
yum-config-manager --enable mysql57-community | |
yum install -y open-vm-tools |