Sha256: 1f10222d38b59addb14788c194841e02645a6e7057e510f3037ab6aab30d7cd3
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
class TestLab class Network module Actions # Create the network def create @ui.logger.debug { "Network Create: #{self.id} " } please_wait(:ui => @ui, :message => format_object_action(self, 'Create', :green)) do self.node.ssh.exec(%(sudo brctl addbr #{self.bridge}), :silence => true, :ignore_exit_status => true) end end # Destroy the network def destroy @ui.logger.debug { "Network Destroy: #{self.id} " } please_wait(:ui => @ui, :message => format_object_action(self, 'Destroy', :red)) do self.node.ssh.exec(%(sudo brctl delbr #{self.bridge}), :silence => true, :ignore_exit_status => true) end end # Start the network def up @ui.logger.debug { "Network Up: #{self.id} " } please_wait(:ui => @ui, :message => format_object_action(self, 'Up', :green)) do self.node.ssh.exec(%(sudo ifconfig #{self.bridge} #{self.ip} up), :silence => true, :ignore_exit_status => true) end end # Stop the network def down @ui.logger.debug { "Network Down: #{self.id} " } please_wait(:ui => @ui, :message => format_object_action(self, 'Down', :red)) do self.node.ssh.exec(%(sudo ifconfig #{self.bridge} down), :silence => true, :ignore_exit_status => true) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
testlab-0.2.1 | lib/testlab/network/actions.rb |
testlab-0.2.0 | lib/testlab/network/actions.rb |