File 0006-change-getopt-and-help-in-define_new_opts.patch of Package fence-agents.10129
--- a/fence/agents/azure_arm/fence_azure_arm.py 2017-02-10 15:24:29.613641512 +0800
+++ b/fence/agents/azure_arm/fence_azure_arm.py 2017-02-10 15:24:53.033636860 +0800
@@ -60,25 +60,25 @@
def define_new_opts():
all_opt["resourceGroup"] = {
- "getopt" : "rg:",
+ "getopt" : ":",
"longopt" : "resourceGroup",
- "help" : "-rg, --resourceGroup=[name] Name of the resource group",
+ "help" : "--resourceGroup=[name] Name of the resource group",
"shortdesc" : "Name of resource group.",
"required" : "1",
"order" : 2
}
all_opt["tenantId"] = {
- "getopt" : "tid:",
+ "getopt" : ":",
"longopt" : "tenantId",
- "help" : "-tid, --tenantId=[name] Id of the Azure Active Directory tenant",
+ "help" : "--tenantId=[name] Id of the Azure Active Directory tenant",
"shortdesc" : "Id of Azure Active Directory tenant.",
"required" : "1",
"order" : 3
}
all_opt["subscriptionId"] = {
- "getopt" : "sid:",
+ "getopt" : ":",
"longopt" : "subscriptionId",
- "help" : "-sid, --subscriptionId=[name] Id of the Azure subscription",
+ "help" : "--subscriptionId=[name] Id of the Azure subscription",
"shortdesc" : "Id of the Azure subscription.",
"required" : "1",
"order" : 4