答えて

0

はい、ShellFoundryを使用するかどうかにかかわらず、ドライバなしでCloudShellシェルを作成できます。シェルのモデル、編集のためのデータモデルディレクトリの下にオープンshellconfig.xmlファイルに添付されるのドライバを除去するために

その後ResourceTemplate XMLノードからドライバ属性を削除します。

<?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> 
関連する問題