2

我想用驱动程序构建一个quali cloudshell shell。即只是一个没有python驱动程序的数据模型。使用 shellfoundry 时我可以这样做吗?

4

1 回答 1

2

是的,无论是否使用 ShellFoundry,您都可以在没有驱动程序的情况下创建 CloudShell Shell。

为了删除驱动程序附加到 Shell 的模型,打开位于datamodel目录下的shellconfig.xml文件进行编辑。

然后从ResourceTemplate XML 节点中删除Driver属性:

<?xml version="1.0" encoding="utf-8"?>
<ShellsConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.qualisystems.com/ResourceManagement/ShellsConfigurationSchema.xsd">
<ResourceTemplates>
    <ResourceTemplate Name="ShellWithoutDriver" Model="ShellWithoutDriver">
        <Description></Description>
        <AutoLoad Enable="false">
            <Description>Description for autoload </Description>
        </AutoLoad>
        <Attributes>
            <Attribute Name="User" Value="" />
            <Attribute Name="Password" Value="" />
        </Attributes>
    </ResourceTemplate>    
</ResourceTemplates>
</ShellsConfiguration>
于 2016-09-22T10:55:41.313 回答