Re: [zones-discuss] renaming zonepath

2010-03-01 Thread Craig
I was getting the same "zoneadm: zone 'note': 'copy' failed with exit code 1" error and it was because a snapshot existed of the dataset that the zone was on. Once I deleted the snapshot, I was able to move the zone. Hope that helps! -- This message posted from opensolaris.org __

Re: [Fwd: [zones-discuss] nobody owns $HOME]

2007-03-22 Thread Craig Payne
lstead This message posted from opensolaris.org ___ zones-discuss mailing list zones-discuss@opensolaris.org -- Craig Payne Manager, Security Technologies (510) 550-7413 x30176 ___ zones-discuss mailing list zones-discuss@opensolaris.org

Re: [zones-discuss] Script run from global zone into local zones - to shut them down

2008-05-09 Thread Craig Cory
Anne, Something like this should work for you: === #!/bin/sh for z in `zoneadm list` do if [ "$z" = "global" ]; then continue fi zlogin $z shutdown -y -g0 -i0 done ==== Regards, Craig In response to Anne Mo

Re: [zones-discuss] Script run from global zone into local zones - to shut them down

2008-05-09 Thread Craig Cory
Beware that the 'halt' command will use killall to stop all processes - perhaps too severe for your delicate applications. 'shutdown'/'init #' will use the smf system for state changes. Craig In response to Jordan Brown (Sun), who said: > Depends on whether yo