Yes as root via p.open. However my thinking now is  that it is related to the 
executed command prior to these bootadm update-archive -R /mnt

   #--------------------------------------------------------------------------
    
    def clone_worker(self,cmd):         
        try:
                self.set_status('Cmd:'+cmd)
                p = os.popen(cmd,'r',256)
                sys.stdout.flush()
                line = p.readline()
                while line:
                        self.set_output(line)
                        line = p.readline()
                        if not line: break
                        p.close()
                self.set_output('Cmd:'+cmd)
        except:
                self.c_errors = self.c_errors + 1
                self.set_status('Cmd:'+cmd+' Failure:'+str(self.c_errors))
                self.set_output('Failure:'+cmd+' ERROR:'+str(self.c_errors))
--

This message posted from opensolaris.org

_______________________________________________
indiana-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/indiana-discuss

Reply via email to