🐛 修复几个 bug

This commit is contained in:
Zhang Peng 2018-02-02 17:53:50 +08:00
parent e5ea9cdf97
commit b39ae61f85
3 changed files with 12 additions and 4 deletions

View File

@ -73,7 +73,7 @@ function chooseOper() {
git) ${filepath}/tool/git/install-git.sh;; git) ${filepath}/tool/git/install-git.sh;;
svn) ${filepath}/tool/svn/install-svn.sh;; svn) ${filepath}/tool/svn/install-svn.sh;;
jdk8) ${filepath}/tool/jdk/install-jdk8.sh;; jdk8) ${filepath}/tool/jdk/install-jdk8.sh;;
maven) ${filepath}/tool/maven/install-maven.sh;; maven) ${filepath}/tool/maven/install-maven3.sh;;
nginx) ${filepath}/tool/nginx/install-nginx.sh;; nginx) ${filepath}/tool/nginx/install-nginx.sh;;
nodejs) ${filepath}/tool/nodejs/install-nodejs.sh;; nodejs) ${filepath}/tool/nodejs/install-nodejs.sh;;
tomcat) ${filepath}/tool/tomcat/install-tomcat8.sh;; tomcat) ${filepath}/tool/tomcat/install-tomcat8.sh;;

View File

@ -4,7 +4,7 @@ echo -e "\n>>>>>>>>> install jdk8"
yum -y install java-1.8.0-openjdk-devel-debug.x86_64 yum -y install java-1.8.0-openjdk-devel-debug.x86_64
cat >/etc/profile.d/jdk.sh<<EOF cat >> /etc/profile << EOF
JAVA_HOME=/usr/lib/jvm/java JAVA_HOME=/usr/lib/jvm/java
PATH=${JAVA_HOME}/bin:\$PATH PATH=${JAVA_HOME}/bin:\$PATH
CLASSPATH=.:\$JAVA_HOME/lib/dt.jar:\$JAVA_HOME/lib/tools.jar CLASSPATH=.:\$JAVA_HOME/lib/dt.jar:\$JAVA_HOME/lib/tools.jar
@ -12,4 +12,4 @@ export JAVA_HOME
export PATH export PATH
export CLASSPATH export CLASSPATH
EOF EOF
chown root.root /etc/profile.d/jdk.sh source /etc/profile

View File

@ -6,5 +6,13 @@ mkdir -p /opt/software/maven
cd /opt/software/maven cd /opt/software/maven
version=3.5.2 version=3.5.2
wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://mirrors.shuosc.org/apache/maven/maven-3/${version}/binaries/apache-maven-${version}-bin.tar.gz wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/${version}/binaries/apache-maven-${version}-bin.tar.gz
tar -zxvf apache-maven-${version}-bin.tar.gz tar -zxvf apache-maven-${version}-bin.tar.gz
cat >> /etc/profile << EOF
MAVEN_HOME=/opt/software/maven/apache-maven-\${version}
PATH=\${MAVEN_HOME}/bin:\${PATH}
export MAVEN_HOME
export PATH
EOF
source /etc/profile