Azure的CLI目前已是基於Python的2.0版本。其信息在下面的連接能夠找到:python
https://github.com/Azure/azure-cligit
其安裝方法能夠根據網站上描述的命令實現:github
curl -L https://aka.ms/InstallAzureCli | bash
但這種安裝模式是交互式的,不能實現靜默安裝。bash
本文將介紹如何採用expect實現靜默安裝。app
1、說明curl
根據https://docs.microsoft.com/en-us/cli/azure/install-az-cli2中描述的安裝指南,在安裝CLI前,有一些準備工做:網站
我用的是CentOS7.3版本的Linux,其Pre-Request爲:url
sudo yum check-update; sudo yum install -y gcc libffi-devel python-devel openssl-devel
安裝命令爲:spa
curl -L https://aka.ms/InstallAzureCli | bash
因爲安裝過程有交互,因此採用inspect來實現預期的交互安裝。code
2、安裝
兩個腳本:
1. installAzureCli.sh
作安裝前的準備工做,並調用expect的腳本:
#!/bin/bash yum update yum install -y expect yum install -y gcc libffi-devel python-devel openssl-devel expect test.sh
2. test.sh
進行安裝:
#!/usr/bin/expect -f set timeout 20000 spawn /bin/sh -c "curl -L https://aka.ms/InstallAzureCli | bash" expect "*)*" send "\r" expect "*)*" send "\r" expect "*)*" send "\r" expect "*)*" send "\r" expect "*)*" send "\r" interact
其中timeout設置比較長,是保證在安裝時不會中斷,安裝中都是默認回車就ok,因此所有是發送回車便可。
3、驗證
輸入:
[root@hwwaf01 test]# az /\
/ \ _____ _ _ __ ___
/ /\ \ |_ / | | | \'__/ _ \
/ ____ \ / /| |_| | | | __/
/_/ \_\/___|\__,_|_| \___| Welcome to the cool new Azure CLI! Here are the base commands: account : Manage subscriptions. acr : Manage Azure container registries. acs : Manage Azure Container Services. ad : Synchronize on-premises directories and manage Azure Active Directory resources. appservice : Manage your App Service plans. batch : Manage Azure Batch. ……
說明已經安裝成功。
[root@hwwaf01 test]# az --version azure-cli (2.0.6) acr (2.0.4) acs (2.0.6) appservice (0.1.6) ……..
能夠檢查其版本。
登陸AzureChina:
az cloud set --name AzureChinaCloud az login --username admin@xxxx.partner.onmschina.cn Password:
輸入密碼後,就能夠登陸了。