Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datamodel/shellconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<ResourceTemplate Name="SampleShell" Model="SampleShell" Driver="SampleShell Driver">
<Description></Description>
<AutoLoad Enable="false">
<Description>Description for autoload </Description>
<Description>this is a really good time for a break! </Description>
</AutoLoad>
<Attributes>
<Attribute Name="User" Value="" />
<Attribute Name="Password" Value="" />
</Attributes>
</ResourceTemplate>
</ResourceTemplates>
</ShellsConfiguration>
</ShellsConfiguration>
2 changes: 1 addition & 1 deletion src/sampleShelldriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def initialize(self, context):
:type context: cloudshell.shell.core.driver_context.InitCommandContext
"""
return 'Finished initializing'

#this is a change
# Destroy the driver session, this function is called everytime a driver instance is destroyed
# This is a good place to close any open sessions, finish writing to log files
def cleanup(self):
Expand Down