码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本之安装ansible(centos7环境)

时间:2016-11-15 21:07:39      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:shell

#!/usr/bin/env bash

ansilbe

if [ $? -eq 0 ]    #检查上一命令是否执行成功,如不等于0,则进行安装
then
        echo ‘ansible existing‘
else
        #设置EPEL仓库
        rpm -iUvh http://dl.Fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
        
        #使用yum安装Ansible
        yum -y install ansible
        
        #安装完成后,检查ansible版本
        vers=`ansible --version`
        echo "ansible install complete, version=$vers"
fi


本文出自 “FA&IT运维-Q群:223843163” 博客,请务必保留此出处http://freshair.blog.51cto.com/8272891/1872957

shell脚本之安装ansible(centos7环境)

标签:shell

原文地址:http://freshair.blog.51cto.com/8272891/1872957

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!