답변

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> 
관련 문제