Skip to content

tmetsch/pyzone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Manage Solaris Zones in Python

This project holds a python module with a ctypes wrapper around some Solaris specific calls.

Module can be retrieved from pypi as well:

easy_install/pip install pyzone

Some code snippets

List zones

zones = zone.list_zones()
for identifier in zones.keys():
    print zones[identifier]
    print zone.get_state(identifier)

Boot a zone

zone.boot_zone(item)
print zone.get_state(item)

Available functions

  • list_zones
  • get_state
  • boot_zone
  • halt_zone
  • shutdown_zone
  • restart_zone
  • ready_zone
  • call_zone_adm

Note

Please note that some operations can take a while to complete.

(c) 2011 tmetsch

About

Manage Solaris Zones from Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages