The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Operating Systems > SUN Solaris
Google UNIX.COM



Thread: Zones
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 08-29-2007
pressy's Avatar
pressy pressy is offline
solaris cultist
 

Join Date: Aug 2003
Location: Vienna / Austria (Europe) [EARTH]
Posts: 720
that should work:

Code:
for ZONE in $(zoneadm list -cv | awk '/running/ && !/global/ {print $2}'); do zoneadm -z $ZONE reboot; done


gP
Reply With Quote